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