[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git] / test / SemaObjC / rdr-6211479-array-property.m
blob39c056c5ba617fcf66be29fffedf702430ad839e
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // <rdar://problem/6211479>
4 typedef int T[2];
6 @interface A
7 @property(assign) T p2; // expected-error {{property cannot have array or function type 'T' (aka 'int [2]')}}
8 @end