blob: 518250eaa607f90e0386742009fab37b84fb4a6d [file] [log] [blame]
Douglas Gregor3dfea402009-01-17 00:53:59 +00001// RUN: clang -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