[SmallPtrSet] Remove SmallArray member (NFC) (#118099)
[llvm-project.git] / clang / test / SemaObjC / pedantic-dynamic-test.m
blob34cbb7241dcc4c16a569f2d59abb29e61e006099
1 // RUN: %clang_cc1 -fsyntax-only -verify -pedantic -Wno-objc-root-class %s
2 // expected-no-diagnostics
4 @interface I
6   int window;
8 @property int window, noWarningNeeded;
9 @end
11 @implementation I
13 @synthesize window;
15 @dynamic noWarningNeeded;
16 @end