Sign in
nest-open-source
/
stadia-controller
/
gcc-arm-none-eabi
/
3c699435f69c74a12f5fe18c0181fba6f1dd0479
/
.
/
src
/
gcc
/
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" }
}