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