| 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 |