CMake/Tests/CompileFeatures/cxx_reference_qualified_functions.cpp
2014-04-08 11:05:55 +02:00

12 lines
125 B
C++

struct test{
void f() & { }
void f() && { }
};
void someFunc(){
test t;
t.f(); // lvalue
test().f(); // rvalue
}