YouCompleteMe/cpp/llvm/tools/clang/test/SemaObjC/rdr-6211479-array-property.m
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

9 lines
220 B
Objective-C

// 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