mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-14 08:31:28 -04:00
9 lines
220 B
Objective-C
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
|