1 // RUN: %clang_cc1 -fsyntax-only -verify %s 2 3 @interface Test {} 4 + (Test*)one; 5 - (int)two; 6 @end 7 8 int main () 9 { 10 return Test.one.two; 11 } 12 13