blob: 252f2cfe9e2a7fe0af2f7bf2a44f4bfc3b82c008 [file] [log] [blame]
Anders Carlsson8a1d2292009-09-12 19:35:43 +00001struct x {
2 x() : a(4) ; // expected-error {{expected '{'}}
3};
4
5struct y {
6 int a;
7 y() : a(4) ; // expected-error {{expected '{'}}
8};