freebsd-dev/test/SemaObjC/class-property-access.m
2009-06-02 17:58:47 +00:00

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;
}