[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / SemaObjC / warn-strict-selector-match.m
blob85f1868371df53dccc41bf26a8f6fea501df2de5
1 // RUN: %clang_cc1  -Wstrict-selector-match -fsyntax-only -verify %s
3 @interface Foo
4 -(int) method; // expected-note {{using}}
5 @end
7 @interface Bar
8 -(float) method;        // expected-note {{also found}}
9 @end
11 int main(void) { [(id)0 method]; } // expected-warning {{multiple methods named 'method' found}}
13 @interface Object @end
15 @interface Class1
16 - (void)setWindow:(Object *)wdw;        // expected-note 2 {{using}}
17 @end
19 @interface Class2
20 - (void)setWindow:(Class1 *)window;     // expected-note 2 {{also found}}
21 @end
23 id foo(void) {
24   Object *obj = 0;
25   id obj2 = obj;
26   [obj setWindow:0];    // expected-warning {{Object' may not respond to 'setWindow:'}} \
27                         // expected-warning {{multiple methods named 'setWindow:' found}}
28   [obj2 setWindow:0]; // expected-warning {{multiple methods named 'setWindow:' found}}
29   return obj;
32 @protocol MyObject
33 - (id)initWithData:(Object *)data;      // expected-note {{also found}} 
34 @end
36 @protocol SomeOther
37 - (id)initWithData:(int)data;   // expected-note {{also found}}
38 @end
40 @protocol MyCoding
41 - (id)initWithData:(id<MyObject, MyCoding>)data;        // expected-note {{using}}
42 @end
44 @interface NTGridDataObject: Object <MyCoding>
46     Object<MyCoding> *_data;
48 + (NTGridDataObject*)dataObject:(id<MyObject, MyCoding>)data;
49 @end
51 @implementation NTGridDataObject
52 - (id)initWithData:(id<MyObject, MyCoding>)data { // expected-note {{also found}}
53   return data;
55 + (NTGridDataObject*)dataObject:(id<MyObject, MyCoding>)data
57     NTGridDataObject *result = [(id)0 initWithData:data]; // expected-warning {{multiple methods named 'initWithData:' found}} 
58     return result;
60 @end
62 @interface Base
63 - (unsigned)port;
64 @end
66 @interface Derived: Base
67 - (Object *)port;
68 + (Protocol *)port;
69 @end
71 void foo1(void) {
72   [(Class)0 port]; // OK - gcc issues warning but there is only one Class method so no ambiguity to warn
75 // rdar://19265430
76 @interface NSObject 
77 - (id)class;
78 - (id) alloc;
79 @end
81 @class NSString;
83 @interface A : NSObject
84 - (instancetype)initWithType:(NSString *)whatever; // expected-note {{also found}}
85 @end
87 @interface Test : NSObject
88 @end
90 @implementation Test
91 + (instancetype)foo
93     return [[[self class] alloc] initWithType:3]; // expected-warning {{multiple methods named 'initWithType:'}}
96 - (instancetype)initWithType:(unsigned int)whatever // expected-note {{using}}
98     return 0;
100 @end