blob: c46d3fb397cea4147923768ecfe4a44043a83e37 [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify %s
@interface Test {}
+ (Test*)one;
- (int)two;
@end
int main ()
{
return Test.one.two;
}