blob: 663b87d2ff1890f99afd2a687b5a6fddb175d7dc [file] [log] [blame]
Steve Naroffed91f902009-04-02 18:37:59 +00001// RUN: clang -fsyntax-only -verify %s
2
3@interface Test {}
4+ (Test*)one;
5- (int)two;
6@end
7
8int main ()
9{
10 return Test.one.two;
11}
12