blob: cb2b440271f49ca34b263a915d159eeb0f016f55 [file] [log] [blame]
/* APPLE LOCAL file radar 4738176 */
/* Test that no bogus warning is issued in the synthesize compound-expression. */
/* APPLE LOCAL radar 4899595 */
/* { dg-options "-fno-objc-new-property -mmacosx-version-min=10.5 -Wall" } */
/* { dg-do compile } */
@interface test
@property(ivar) int foo;
@property(ivar) int foo1;
@property(ivar) int foo2;
@end
extern int one ();
extern int two ();
@implementation test
- (void) pickWithWarning:(int)which {
self.foo = (which ? 1 : 2);
self.foo1 = self.foo2 = (which ? 1 : 2);
self.foo = (which ? one() : two() );
self.foo1 = self.foo2 = (which ? one() : two ());
}
@end