You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
220 B
9 lines
220 B
4 months ago
|
// 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
|