newproperty-nowarn-unused-param.mm   [plain text]


/* APPLE LOCAL file radar 5232840 */
/* Test that no warning is issued on 'unused' "_value" parameter even though it is used. */
/* { dg-options "-Wunused-parameter -mmacosx-version-min=10.5" } */
/* { dg-do compile { target *-*-darwin* } } */
@interface MyClass 
{
        int foo;
}
@property(readwrite) int foo;
@end


@implementation MyClass
@synthesize foo;
@end