blob: fc27870f42dd7618845ae38dd1cc800c0fd0bea2 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Chris Lattnercddc8882009-03-01 00:56:52 +00002
3@interface MyClass
4@end
5
6@protocol P
7- (void)Pmeth;
8- (void)Pmeth1;
9@end
10
11// Class extension
12@interface MyClass () <P>
13- (void)meth2;
14@end
15
16// Add a category to test that clang does not emit warning for this method.
17@interface MyClass (Category)
18- (void)categoryMethod;
19@end
20
21@implementation MyClass // expected-warning {{incomplete implementation}} \
22 expected-warning {{method definition for 'meth2' not found}} \
23 expected-warning {{method definition for 'Pmeth1' not found}}
24- (void)Pmeth {}
25@end