cmake/Tests/CompileFeatures/cxx_reference_qualified_functions.cpp
2016-07-09 11:21:54 +02:00

14 lines
130 B
C++

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