Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
rfg2.C
blob: 44cb1cb02317d837112db78faa2216437cfefba2 [
file
] [
log
] [
blame
]
// { dg-do assemble }
// Bug: g++ complains about a class definition containing a const member
// but no constructor; it shouldn't complain at that point, since this is
// valid use.
struct
S
{
const
int
member
;
}
object
=
{
0
};