hanchenye-llvm-project/clang/test/SemaObjC/class-property-access.m

13 lines
131 B
Objective-C

// RUN: clang -fsyntax-only -verify %s
@interface Test {}
+ (Test*)one;
- (int)two;
@end
int main ()
{
return Test.one.two;
}