Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
b3da613977f6b77dee2b382eeff5713168a4ca18
/
.
/
test
/
SemaObjC
/
rdr-6211479-array-property.m
blob: 39c056c5ba617fcf66be29fffedf702430ad839e [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -verify %s
// <rdar://problem/6211479>
typedef
int
T
[
2
];
@interface
A
@property
(
assign
)
T p2
;
// expected-error {{property cannot have array or function type 'T' (aka 'int [2]')}}
@end