blob: b168976da136798eb9cdef238f002752d0517703 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc %s -fsyntax-only -verify
Chris Lattner8a934232008-03-31 00:36:02 +00002
3@interface Test {
4 int x;
5}
6
7-(void) setX: (int) d;
8@end
9
10extern struct foo x;
11
12@implementation Test
13
14-(void) setX: (int) n {
15 x = n;
16}
17
18@end