-
Notifications
You must be signed in to change notification settings - Fork 15.4k
Closed
Labels
Description
| Bugzilla Link | 3733 |
| Resolution | FIXED |
| Resolved on | Feb 22, 2010 12:55 |
| Version | unspecified |
| OS | All |
| CC | @DougGregor |
Extended Description
These crash in different ways:
struct x {
x() : a(4) ;
};
struct x {
int a;
x() : a(4) ;
};
See also the FIXME in ParseCXXInlineMethods.cpp:
// FIXME: What if ParseConstructorInitializer doesn't leave us with a '{'??