Fix the clang-wpa example.
[clang.git] / test / SemaObjC / class-property-access.m
blobc46d3fb397cea4147923768ecfe4a44043a83e37
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
3 @interface Test {}
4 + (Test*)one;
5 - (int)two;
6 @end
8 int main ()
10   return Test.one.two;