class-property-access.m   [plain text]


// RUN: clang -fsyntax-only -verify %s

@interface Test {}
+ (Test*)one;
- (int)two;
@end

int main ()
{
  return Test.one.two;
}