Sign in
nest-open-source
/
stadia-controller
/
gcc-arm-none-eabi
/
3c699435f69c74a12f5fe18c0181fba6f1dd0479
/
.
/
src
/
gcc
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
rv-template1.C
blob: dcc4e5efb70fdadb2fced55d086806c997d4aa4a [
file
]
// PR c++/44870
// { dg-do compile { target c++11 } }
void
foo
(
int
&&
data
);
template
<
typename
T
>
void
bar
(
T t
)
{
foo
(
int
());
}
void
baz
()
{
bar
(
0
);
}