Home | History | Annotate | Download | only in SemaObjC
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 // <rdar://problem/6211479>
      3 
      4 typedef int T[2];
      5 
      6 @interface A
      7 @property(assign) T p2; // expected-error {{property cannot have array or function type 'T' (aka 'int [2]')}}
      8 @end
      9