[LLDB-DAP] Send Progress update message over DAP (#123837)
[llvm-project.git] / clang / test / SemaObjC / Inputs / arc-system-header.h
blob9decc5efce6e998cf717a62dab2714b952c3cefc
1 static inline void *test0(id x) {
2 return x;
5 static inline void **test1(__strong id* x) {
6 return (void**) x;
13 struct Test3 {
14 id *field;
17 @interface Test4 {
18 @public
19 id *field1;
20 __strong id *field2;
22 @end
24 struct Test5 {
25 id field;
34 extern struct Test6 *const kMagicConstant;
40 @interface Test7
41 @property id *prop;
42 @end
50 static inline void *test8(id ptr) {
51 return (__bridge_retain void*) ptr;
54 typedef struct {
55 const char *name;
56 id field;
57 } Test9;