2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
2009-03-03 03:05:07 +08:00
|
|
|
|
|
|
|
@interface Foo
|
2011-12-15 08:38:15 +08:00
|
|
|
- (int) garf; // expected-note {{previous declaration is here}}
|
2009-03-03 03:05:07 +08:00
|
|
|
- (int) OK;
|
2011-12-15 08:38:15 +08:00
|
|
|
+ (int) cgarf; // expected-note {{previous declaration is here}}
|
2009-03-03 03:05:07 +08:00
|
|
|
- (int) InstMeth;
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface Foo()
|
|
|
|
- (void) garf; // expected-error {{duplicate declaration of method 'garf'}}
|
|
|
|
+ (void) cgarf; // expected-error {{duplicate declaration of method 'cgarf'}}
|
|
|
|
+ (int) InstMeth;
|
|
|
|
- (int) OK;
|
|
|
|
@end
|