Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
defaulted17.C
blob: 0a3c0de268afaf468d84ffa610c702363ea54e64 [
file
] [
log
] [
blame
]
// { dg-do compile { target c++11 } }
struct
A
// { dg-error "const|operator=" }
{
const
int
i
;
};
int
main
()
{
A a
=
{
0
};
a
=
a
;
// { dg-error "deleted" }
}