Home | History | Annotate | Download | only in SemaObjC
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 // expected-no-diagnostics
      3 
      4 @interface Test {}
      5 + (Test*)one;
      6 - (int)two;
      7 @end
      8 
      9 int main ()
     10 {
     11   return Test.one.two;
     12 }
     13 
     14