reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | // RUN: %clang_cc1 %s -fsyntax-only // FIXME: This test needs needs to be run with -verify @interface NSObject + alloc; - init; @end struct D { double d; }; @interface Foo : NSObject - method:(int)a; - method:(int)a; @end @interface Bar : NSObject - method:(void *)a; @end @interface Car : NSObject - method:(struct D)a; @end @interface Zar : NSObject - method:(float)a; @end @interface Rar : NSObject - method:(float)a; @end int main() { id xx = [[Car alloc] init]; // expected-warning {{incompatible types assigning 'int' to 'id'}} [xx method:4]; } |