1f51a89d39
These were ignored by git accidentally. We want ALL OF THEM since they all came in the llvm/clang source distribution.
16 lines
163 B
Objective-C
16 lines
163 B
Objective-C
// RUN: %clang_cc1 -rewrite-objc -fobjc-fragile-abi %s -o -
|
|
|
|
@interface MyDerived
|
|
{
|
|
@public
|
|
int IVAR;
|
|
}
|
|
@end
|
|
|
|
MyDerived *pd;
|
|
int main() {
|
|
return pd->IVAR;
|
|
}
|
|
|
|
|