[NFC] Maintainers.rst: align email address formatting
[llvm-project.git] / clang / test / SemaObjC / property-ambiguous-synthesis.m
blob854572e56a282d9b098f0888b9a258475f7984d6
1 // RUN: %clang_cc1  -fsyntax-only -verify -Wno-objc-root-class %s
3 @protocol FooAsID
4 @property (assign) id foo; // expected-note 2 {{it could also be property of type 'id' declared here}} \\
5                          // expected-warning {{property of type 'id' was selected for synthesis}}
6 @end
8 @protocol FooAsDouble
9 @property double foo; // expected-warning 2 {{property of type 'double' was selected for synthesis}} \
10                       // expected-note {{it could also be property of type 'double' declared here}}
11 @end
13 @protocol FooAsShort
14 @property short foo; // expected-note {{it could also be property of type 'short' declared here}}
15 @end
17 @interface NSObject @end
19 @interface AnObject : NSObject<FooAsDouble,FooAsID>
20 @end
22 @interface Sub : AnObject
23 @end
25 @implementation Sub
26 @synthesize foo=_MyFooIvar; // expected-note {{property synthesized here}}
27 @end
30 @interface AnotherObject : NSObject<FooAsDouble, FooAsID,FooAsDouble, FooAsID, FooAsDouble,FooAsID>
31 @end
33 @implementation AnotherObject
34 @synthesize foo=_MyFooIvar; // expected-note {{property synthesized here}}
35 @end
38 @interface YetAnotherObject : NSObject<FooAsID,FooAsShort, FooAsDouble,FooAsID, FooAsShort>
39 @end
41 @implementation YetAnotherObject
42 @synthesize foo=_MyFooIvar; // expected-note {{property synthesized here}}
43 @end
45 double func(YetAnotherObject *object) {
46   return [object foo]; // expected-error {{returning 'id' from a function with incompatible result type 'double'}}