blob: 9c30c3640a8b70989b90b30800982d4a0b0f346e [file] [log] [blame]
// 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.
// Build don't link:
struct S { const int member; } object = { 0 };