blob: 77cc732090e619ca1d815a13a97b52509ee32ba4 [file] [log] [blame]
// Bug: member initializers are allowed where they shouldn't be.
// Build don't link:
template <class T>
struct A {
int i;
Blarg () : i(0) { } // ERROR -
};