[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / AST / ast-print-objectivec.m
blob05a0a5d4aa74c47fb7592dd0b08b6d796733d8ae
1 // RUN: %clang_cc1 -ast-print %s -o - | FileCheck %s
3 @interface NSObject @end
5 @protocol P
6 - (void)MethP __attribute__((availability(macosx,introduced=10.1.0,deprecated=10.2)));
7 @end
9 @interface I : NSObject <P>
10 - (void)MethI __attribute__((availability(macosx,introduced=10.1.0,deprecated=10.2)));
11 @end
13 @interface I(CAT)
14 - (void)MethCAT __attribute__((availability(macosx,introduced=10_1_0,deprecated=10_2)));
15 @end
17 @implementation I
18 - (void)MethP __attribute__((availability(macosx,introduced=10.1.0,deprecated=10.2))) {}
19 - (void)MethI __attribute__((availability(macosx,introduced=10.1.0,deprecated=10.2))) {}
21 - (void)methodWithArg:(int)x andAnotherOne:(int)y { }
22 @end
24 // CHECK: @protocol P
25 // CHECK: - (void)MethP __attribute__((availability(macos, introduced=10.1.0, deprecated=10.2)));
26 // CHECK: @end
28 // CHECK: @interface I : NSObject<P> 
29 // CHECK: - (void)MethI __attribute__((availability(macos, introduced=10.1.0, deprecated=10.2)));
30 // CHECK: @end
32 // CHECK: @interface I(CAT)
33 // CHECK: - (void)MethCAT __attribute__((availability(macos, introduced=10.1.0, deprecated=10.2)));
34 // CHECK: @end
36 // CHECK: @implementation I
37 // CHECK: - (void)MethP __attribute__((availability(macos, introduced=10.1.0, deprecated=10.2))) {
38 // CHECK: }
40 // CHECK: - (void)MethI __attribute__((availability(macos, introduced=10.1.0, deprecated=10.2))) {
41 // CHECK: }
43 // CHECK: - (void)methodWithArg:(int)x andAnotherOne:(int)y {
44 // CHECK: }
46 // CHECK: @end
48 @class C1;
49 struct __attribute__((objc_bridge_related(C1,,))) S1;
51 // CHECK: @class C1;
52 // CHECK: struct __attribute__((objc_bridge_related(C1, , ))) S1;
54 @interface ImplicitPropertyWithSetterOnly
56 - (void)setX:(int)x;
58 @end
60 void printImplicitPropertyWithSetterOnly(ImplicitPropertyWithSetterOnly *x) {
61   x.x = 313; // CHECK: x.x = 313;