FairRoot
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
cxx11-test-rvalue_references.cpp
Go to the documentation of this file.
1 int foo(int& lvalue)
2 {
3  return 123;
4 }
5 
6 int foo(int&& rvalue)
7 {
8  return 321;
9 }
10 
11 int main()
12 {
13  int i = 42;
14  return ((foo(i) == 123) && (foo(42) == 321)) ? 0 : 1;
15 }
auto foo(int i) -> int
int main(void)