Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / objc.dg / anon-1.m
blob5f10f7d60261fd7ce3495cae83c11f785cdcffad
1 /* Test for graceful handling of anonymous ivars.  */
2 /* { dg-do compile } */
4 @interface Foo {
5    unsigned char : 1;
6    int e: 3;
7    signed: 2;
8    float f;
10 @end
12 @implementation Foo
13 @end