]> git.proxmox.com Git - rustc.git/blob - src/llvm/tools/clang/test/SemaObjC/pedantic-dynamic-test.m
Imported Upstream version 0.6
[rustc.git] / src / llvm / tools / clang / test / SemaObjC / pedantic-dynamic-test.m
1 // RUN: %clang_cc1 -fsyntax-only -verify -pedantic -Wno-objc-root-class %s
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