2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / objc.dg / fsyntax-only.m
blob54a879e22c5b54bf4bf2985f4bd3176f5398c32b
1 /* Test -fsyntax-only compiler option  */
2 /* { dg-do compile } */
3 /* { dg-options "-fsyntax-only" } */
5 @interface foo
6 -(void) my_method:(int) i with:(int) j;
7 @end
9 @implementation foo
10 -(void) my_method:(int) i with:(int) j { }
11 @end