blob: c46d3fb397cea4147923768ecfe4a44043a83e37 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Steve Naroffed91f902009-04-02 18:37:59 +00002
3@interface Test {}
4+ (Test*)one;
5- (int)two;
6@end
7
8int main ()
9{
10 return Test.one.two;
11}
12