xref: /aosp_15_r20/external/clang/test/SemaObjC/pedantic-dynamic-test.m (revision 67e74705e28f6214e480b399dd47ea732279e315)
1// RUN: %clang_cc1 -fsyntax-only -verify -pedantic -Wno-objc-root-class %s
2// expected-no-diagnostics
3// rdar: // 7860960
4
5@interface I
6{
7  int window;
8}
9@property int window, noWarningNeeded;
10@end
11
12@implementation I
13
14@synthesize window;
15
16@dynamic noWarningNeeded;
17@end
18