Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaObjC / method-conflict-1.m
blob070701bb5d463a702f188736aad20ec5daefa341
1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
2 // expected-no-diagnostics
4 // This test case tests the default behavior.
6 @interface NSObject @end
8 @interface NSArray : NSObject @end
10 @interface MyClass : NSObject {
12 - (void)myMethod:(NSArray *)object;
13 - (void)myMethod1:(NSObject *)object; // broken-note {{previous definition is here}}
14 @end
16 @implementation MyClass
17 - (void)myMethod:(NSObject *)object {
19 - (void)myMethod1:(NSArray *)object { // broken-warning {{conflicting parameter types in implementation of 'myMethod1:': 'NSObject *' vs 'NSArray *'}}
21 @end
24 @protocol MyProtocol @end
26 @interface MyOtherClass : NSObject <MyProtocol> {
28 - (void)myMethod:(id <MyProtocol>)object; // broken-note {{previous definition is here}}
29 - (void)myMethod1:(id <MyProtocol>)object; // broken-note {{previous definition is here}}
30 @end
32 @implementation MyOtherClass
33 - (void)myMethod:(MyClass *)object { // broken-warning {{conflicting parameter types in implementation of 'myMethod:': 'id<MyProtocol>' vs 'MyClass *'}}
35 - (void)myMethod1:(MyClass<MyProtocol> *)object { // broken-warning {{conflicting parameter types in implementation of 'myMethod1:': 'id<MyProtocol>' vs 'MyClass<MyProtocol> *'}}
37 @end
41 @interface A @end
42 @interface B : A @end
44 @interface Test1 {}
45 - (void) test1:(A*) object; // broken-note {{previous definition is here}} 
46 - (void) test2:(B*) object;
47 @end
49 @implementation Test1
50 - (void) test1:(B*) object {} // broken-warning {{conflicting parameter types in implementation of 'test1:': 'A *' vs 'B *'}}
51 - (void) test2:(A*) object {}
52 @end
54 // wants id -> A* to be an exception
55 @interface Test2 {}
56 - (void) test1:(id) object; // broken-note {{previous definition is here}} 
57 - (void) test2:(A*) object;
58 @end
59 @implementation Test2
60 - (void) test1:(A*) object {} // broken-warning {{conflicting parameter types in implementation of 'test1:': 'id' vs 'A *'}}
61 - (void) test2:(id) object {}
62 @end
64 @interface Test3 {}
65 - (A*) test1;
66 - (B*) test2; // broken-note {{previous definition is here}} 
67 @end
69 @implementation Test3
70 - (B*) test1 { return 0; }
71 - (A*) test2 { return 0; } // broken-warning {{conflicting return type in implementation of 'test2': 'B *' vs 'A *'}}
72 @end
74 // The particular case of overriding with an id return is permitted.
75 @interface Test4 {}
76 - (id) test1;
77 - (A*) test2;
78 @end
79 @implementation Test4
80 - (A*) test1 { return 0; }
81 - (id) test2 { return 0; }
82 @end