blob: 0a1df123bffe0657f9928bc10282927fd0d1a7ad [file] [log] [blame]
// RUN: clang-cc -fnext-runtime -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