Steve Naroff | 7926f10 | 2008-11-17 22:29:32 +0000 | [diff] [blame] | 1 | // RUN: clang -fsyntax-only -verify %s |
| 2 | |
| 3 | @interface Foo |
| 4 | - iMethod; |
| 5 | + cMethod; |
| 6 | @end |
| 7 | |
| 8 | @interface A |
| 9 | @end |
| 10 | |
| 11 | @interface B : A |
| 12 | - (void)instanceMethod; |
| 13 | + classMethod; |
| 14 | @end |
| 15 | |
| 16 | @implementation B |
| 17 | |
| 18 | - (void)instanceMethod { |
| 19 | [super iMethod]; // expected-warning{{method '-iMethod' not found (return type defaults to 'id')}} |
| 20 | } |
| 21 | |
| 22 | + classMethod { |
| 23 | [super cMethod]; // expected-warning{{method '+cMethod' not found (return type defaults to 'id')}} |
| 24 | } |
| 25 | @end |
Steve Naroff | c64a53d | 2008-11-19 15:54:23 +0000 | [diff] [blame] | 26 | |
| 27 | @interface XX |
| 28 | - m; |
| 29 | @end |
| 30 | |
| 31 | void f(id super) { |
| 32 | [super m]; |
| 33 | } |
| 34 | void f0(int super) { |
| 35 | [super m]; // expected-error{{bad receiver type 'int'}} |
| 36 | } |
| 37 | void f1(int puper) { |
| 38 | [super m]; // expected-error{{use of undeclared identifier 'super'}} |
| 39 | } |