2013-10-29 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / obj-c++.dg / property / dotsyntax-22.mm
blobcc583482263b1131b1e500888cbaccd6ddf34c07
1 /* PR objc/47784.  This testcase used to crash the compiler.  */
3 typedef struct {
4   float x;
5 } SomeType;
7 @interface MyClass
9 @property(assign,readwrite) SomeType position;
11 @end
13 void example (MyClass *x)
15   const SomeType SomeTypeZero = {0.0f};
17   x.position= SomeTypeZero;