aboutsummaryrefslogblamecommitdiff
path: root/test/SemaObjC/ivar-lookup.m
blob: b168976da136798eb9cdef238f002752d0517703 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                         
// RUN: clang-cc %s -fsyntax-only -verify

@interface Test {
   int x;
}

-(void) setX: (int) d;
@end

extern struct foo x;

@implementation Test

-(void) setX: (int) n {
   x = n;
}

@end