blob: 83a2361a403e283881702ce434fdb09047e32204 [file] [log] [blame]
struct test{
void f() & { }
void f() && { }
};
void someFunc(){
test t;
t.f(); // lvalue
test().f(); // rvalue
}