[InstCombine] Preserve NSW flags for `lshr (mul nuw X, C1), C2 -> mul nuw nsw X,...
[llvm-project.git] / clang / test / SemaObjC / comptypes-10.m
blobed941dbe985d884466d007d1987b1972ab2bf8fb
1 // RUN: %clang_cc1 -fsyntax-only -verify -Wno-objc-root-class %s
2 // pr8453
4 @protocol NSCopying @end
5 @protocol NSPROTO @end
6 @protocol NSPROTO1 @end
7 @protocol NSPROTO2 @end
9 @interface NSObject <NSCopying, NSPROTO, NSPROTO1> {
10     Class isa;
12 @end
14 void gorf(NSObject <NSCopying> *); // expected-note {{passing argument to parameter here}}
16 NSObject <NSCopying> *foo(id <NSCopying> bar, id id_obj)
18         NSObject <NSCopying> *Init = bar; // expected-warning {{initializing 'NSObject<NSCopying> *' with an expression of incompatible type 'id<NSCopying>'}}
19         NSObject *Init1 = bar; // expected-warning {{initializing 'NSObject *' with an expression of incompatible type 'id<NSCopying>'}}
21         NSObject <NSCopying> *I = id_obj; 
22         NSObject *I1 = id_obj; 
23         gorf(bar);      // expected-warning {{passing 'id<NSCopying>' to parameter of incompatible type 'NSObject<NSCopying> *'}}
25         gorf(id_obj);   
27         return bar;     // expected-warning {{returning 'id<NSCopying>' from a function with incompatible result type 'NSObject<NSCopying> *'}} 
30 void test(id <NSCopying, NSPROTO, NSPROTO2> bar)
32   NSObject <NSCopying> *Init = bar; // expected-warning {{initializing 'NSObject<NSCopying> *' with an expression of incompatible type 'id<NSCopying,NSPROTO,NSPROTO2>'}}
35 @interface NSObject (CAT)
36 + (struct S*)Meth : (struct S*)arg;
37 @end
39 struct S {
40  char *types;
43 @interface I
44 @end
46 @implementation I
47 - (struct S *)Meth : (struct S*)a {
48   return [NSObject Meth : a];
50 @end