blob: 43bc2ad8bfa5643a0a7950ccd0df2eb9a6798b26 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc -rewrite-objc %s -o=-
Fariborz Jahanian87ce5d12007-12-03 22:25:42 +00002
Fariborz Jahanian87ce5d12007-12-03 22:25:42 +00003@interface MyDerived
4{
5@public
6 int IVAR;
7}
8@end
9
10MyDerived *pd;
11int main() {
12 return pd->IVAR;
13}
14
15