Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
bind.C
blob: 9b7ce7dc0b9e3b01c0692b5c8ebfb40827506268 [
file
] [
log
] [
blame
]
// { dg-do compile { target c++11 } }
struct
S
{};
void
f
(
S
&&);
int
main
()
{
f
(
S
());
}