[ELF] Reorder SectionBase/InputSectionBase members
[llvm-project.git] / clang / test / Rewriter / objc-modern-property-bitfield.m
blobf6135e7bd61a9e6130d65132ae7b0acd63e58834
1 // RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fms-extensions -rewrite-objc %s -o %t-modern-rw.cpp
2 // RUN: %clang_cc1 -fsyntax-only -std=gnu++98 -Wno-address-of-temporary -D"Class=void*" -D"id=void*" -D"SEL=void*" -D"__declspec(X)=" %t-modern-rw.cpp
4 void *sel_registerName(const char *);
5 extern void abort();
7 @interface NSObject 
8 + alloc;
9 - init;
10 @end
12 typedef unsigned char BOOL;
14 @interface Foo : NSObject {
16    BOOL  _field1 : 5;
17    BOOL  _field2    : 3;
20 @property BOOL field1;
21 @property BOOL field2;
22 @end
24 @implementation Foo
26 @synthesize field1 = _field1;
27 @synthesize field2 = _field2;
29 @end
31 int main()
33   Foo *f = (Foo*)[[Foo alloc] init];
34   f.field1 = 0xF;
35   f.field2 = 0x3;
36   f.field1 = f.field1 & f.field2;
37   if (f.field1 != 0x3)
38     abort ();
39   return 0;