Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
defaulted39.C
blob: a4963c4d13215cdc0231ca424b7be464f56594c2 [
file
] [
log
] [
blame
]
// DR 1402
// { dg-do compile { target c++11 } }
template
<
class
T
>
T
&&
move
(
T
&
t
);
struct
A
{
A
(
const
A
&);
};
struct
B
{
B
(
B
&&);
};
struct
C
{
A a
;
B b
;
};
extern
C c1
;
C c2
(
move
(
c1
));