1*f4a2713aSLionel Sambuc// RUN: %clang_cc1 -fsyntax-only -verify -pedantic -Wno-objc-root-class %s 2*f4a2713aSLionel Sambuc// expected-no-diagnostics 3*f4a2713aSLionel Sambuc// rdar: // 7860960 4*f4a2713aSLionel Sambuc 5*f4a2713aSLionel Sambuc@interface I 6*f4a2713aSLionel Sambuc{ 7*f4a2713aSLionel Sambuc int window; 8*f4a2713aSLionel Sambuc} 9*f4a2713aSLionel Sambuc@property int window, noWarningNeeded; 10*f4a2713aSLionel Sambuc@end 11*f4a2713aSLionel Sambuc 12*f4a2713aSLionel Sambuc@implementation I 13*f4a2713aSLionel Sambuc 14*f4a2713aSLionel Sambuc@synthesize window; 15*f4a2713aSLionel Sambuc 16*f4a2713aSLionel Sambuc@dynamic noWarningNeeded; 17*f4a2713aSLionel Sambuc@end 18