Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 1 | // RUN: clang %s -fsyntax-only -verify |
2 | |||||
3 | @interface Test { | ||||
4 | int x; | ||||
5 | } | ||||
6 | |||||
7 | -(void) setX: (int) d; | ||||
8 | @end | ||||
9 | |||||
10 | extern struct foo x; | ||||
11 | |||||
12 | @implementation Test | ||||
13 | |||||
14 | -(void) setX: (int) n { | ||||
15 | x = n; | ||||
16 | } | ||||
17 | |||||
18 | @end |