blob: 903dcc7e9700fb7dad270d7702c84843d81e0b1b [file] [log] [blame]
// RUN: clang -emit-llvm -o %t %s
typedef struct {
unsigned f0;
} s0;
@interface A
- (s0) f0;
@end
@implementation A
-(s0) f0{}
- (unsigned) bar {
return self.f0.f0;
}
@end