hanchenye-llvm-project/clang/test/SemaObjC/static-ivar-ref-1.m

19 lines
275 B
Mathematica
Raw Normal View History

// RUN: clang -cc1 -triple i386-unknown-unknown -ast-print %s
// RUN: clang -cc1 -triple x86_64-apple-darwin10 -ast-print %s
@interface current
{
@public
int ivar;
int ivar1;
int ivar2;
}
@end
current *pc;
int foo()
{
return pc->ivar2 + (*pc).ivar + pc->ivar1;
}