1 // RUN: %clang_cc1 -emit-llvm -o %t %s
17 // Test for synthesis of ivar for a property
18 // declared in continuation class.
19 @interface OrganizerViolatorView
22 @interface OrganizerViolatorView()
23 @property (retain) id bindingInfo;
26 @implementation OrganizerViolatorView
27 @synthesize bindingInfo;
30 // [irgen] crash in synthesized property construction
37 @property (assign, readwrite) id p0;