Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
Chris Lattner | cddc888 | 2009-03-01 00:56:52 +0000 | [diff] [blame] | 2 | |
Fariborz Jahanian | 8822f7c | 2010-03-27 19:02:17 +0000 | [diff] [blame] | 3 | @interface MyClass // expected-note {{required for direct or indirect protocol 'P'}} |
Chris Lattner | cddc888 | 2009-03-01 00:56:52 +0000 | [diff] [blame] | 4 | @end |
| 5 | |
| 6 | @protocol P |
| 7 | - (void)Pmeth; |
Fariborz Jahanian | 5214683 | 2010-03-31 18:23:33 +0000 | [diff] [blame] | 8 | - (void)Pmeth1; // expected-warning {{method in protocol not implemented [-Wprotocol]}} |
Chris Lattner | cddc888 | 2009-03-01 00:56:52 +0000 | [diff] [blame] | 9 | @end |
| 10 | |
| 11 | // Class extension |
| 12 | @interface MyClass () <P> |
Fariborz Jahanian | 8822f7c | 2010-03-27 19:02:17 +0000 | [diff] [blame] | 13 | - (void)meth2; // expected-note {{method definition for 'meth2' not found}} |
Chris Lattner | cddc888 | 2009-03-01 00:56:52 +0000 | [diff] [blame] | 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 | |
Fariborz Jahanian | 8822f7c | 2010-03-27 19:02:17 +0000 | [diff] [blame] | 21 | @implementation MyClass // expected-warning {{incomplete implementation}} |
Chris Lattner | cddc888 | 2009-03-01 00:56:52 +0000 | [diff] [blame] | 22 | - (void)Pmeth {} |
| 23 | @end |