OSDN Git Service

2005-06-28 Thomas Koenig <Thomas.Koenig@online.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / objc.dg / anon-1.m
1 /* Test for graceful handling of anonymous ivars.  */
2 /* { dg-do compile } */
3
4 @interface Foo {
5    unsigned char : 1;
6    int e: 3;
7    signed: 2;
8    float f;
9 }
10 @end
11
12 @implementation Foo
13 @end
14