cmake/c++11-test-rvalue_references-N2118.cpp@5e96648f416f
cmake/c++11-test-rvalue_references-N2118.cpp
Sat, 24 Aug 2013 16:17:48 +0300
- author
- Santeri Piippo <crimsondusk64@gmail.com>
- date
- Sat, 24 Aug 2013 16:17:48 +0300
- changeset 482
- 5e96648f416f
- parent 473
-
2a84149fe642
- permissions
- -rw-r--r--
redirect the user to configuration if the download path is not given
int foo(int& lvalue)
{
return 123;
}
int foo(int&& rvalue)
{
return 321;
}
int main()
{
int i = 42;
return ((foo(i) == 123) && (foo(42) == 321)) ? 0 : 1;
}