Ted Kremenek | 422bae7 | 2010-04-18 04:59:38 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 %s -verify |
| 2 | |
| 3 | @interface Foo |
| 4 | { |
| 5 | __attribute__((iboutlet)) id myoutlet; |
| 6 | } |
Ted Kremenek | 4ee2bb1 | 2011-02-04 06:54:16 +0000 | [diff] [blame] | 7 | + (void) __attribute__((ibaction)) myClassMethod:(id)msg; // expected-warning{{ibaction attribute can only be applied to Objective-C instance methods}} |
Ted Kremenek | 422bae7 | 2010-04-18 04:59:38 +0000 | [diff] [blame] | 8 | - (void) __attribute__((ibaction)) myMessage:(id)msg; |
| 9 | @end |
| 10 | |
| 11 | @implementation Foo |
Ted Kremenek | 4ee2bb1 | 2011-02-04 06:54:16 +0000 | [diff] [blame] | 12 | + (void) __attribute__((ibaction)) myClassMethod:(id)msg {} // expected-warning{{ibaction attribute can only be applied to Objective-C instance methods}} |
Ted Kremenek | 422bae7 | 2010-04-18 04:59:38 +0000 | [diff] [blame] | 13 | // Normally attributes should not be attached to method definitions, but |
| 14 | // we allow 'ibaction' to be attached because it can be expanded from |
| 15 | // the IBAction macro. |
| 16 | - (void) __attribute__((ibaction)) myMessage:(id)msg {} // no-warning |
| 17 | @end |