llvm-project/clang/test/Rewriter/undef-field-reference-1.m

16 lines
143 B
Mathematica
Raw Normal View History

// RUN: clang -cc1 -rewrite-objc %s -o -
@interface MyDerived
{
@public
int IVAR;
}
@end
MyDerived *pd;
int main() {
return pd->IVAR;
}