Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
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" }
}