blob: 0a1df123bffe0657f9928bc10282927fd0d1a7ad [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -fnext-runtime -emit-llvm -o %t %s
Fariborz Jahanian35c33292009-01-12 23:27:26 +00002
3typedef struct {
4 unsigned f0;
5} s0;
6
7@interface A
8- (s0) f0;
9@end
10
11@implementation A
12-(s0) f0{}
13- (unsigned) bar {
14 return self.f0.f0;
15}
16@end
17