mirror of
https://github.com/reactos/CMake.git
synced 2024-12-01 15:30:40 +00:00
12 lines
125 B
C++
12 lines
125 B
C++
|
|
struct test{
|
|
void f() & { }
|
|
void f() && { }
|
|
};
|
|
|
|
void someFunc(){
|
|
test t;
|
|
t.f(); // lvalue
|
|
test().f(); // rvalue
|
|
}
|