brintos

brintos / llvm-project-archived public Read only

0
0
Text · 250 B · 34cbb72 Raw
17 lines · plain
1// RUN: %clang_cc1 -fsyntax-only -verify -pedantic -Wno-objc-root-class %s2// expected-no-diagnostics3 4@interface I5{6  int window;7}8@property int window, noWarningNeeded;9@end10 11@implementation I12 13@synthesize window;14 15@dynamic noWarningNeeded;16@end17