Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
Wunused-parm.C
blob: 232e484356e22ccc75f4238bcd566f737522a114 [
file
] [
log
] [
blame
]
// PR c++/57211
// { dg-do compile { target c++11 } }
// { dg-options "-Wunused-parameter" }
template
<
class
T
>
T
&&
move
(
T
&);
struct
A
{
struct
B
{
B
&
operator
=(
B
&&);
};
B f
;
A
&
operator
=(
A
&&
p
)
=
default
;
};
int
main
()
{
A a
;
A b
;
b
=
move
(
a
);
}