Patrick Beard | b2f6820 | 2012-04-06 18:12:22 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify -pedantic -Wno-objc-root-class %s |
Fariborz Jahanian | 94b24db | 2010-04-14 20:52:42 +0000 | [diff] [blame] | 2 | // rdar: // 7860960 |
3 | |||||
4 | @interface I | ||||
5 | { | ||||
6 | int window; | ||||
7 | } | ||||
8 | @property int window, noWarningNeeded; | ||||
9 | @end | ||||
10 | |||||
11 | @implementation I | ||||
12 | |||||
13 | @synthesize window; | ||||
14 | |||||
15 | @dynamic noWarningNeeded; | ||||
16 | @end |