Remove an ObjC-specific XFAIL (and tweak test).

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77454 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Steve Naroff 2009-07-29 15:24:47 +00:00
Родитель c715e78618
Коммит ddc4b81aab
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -1,9 +1,8 @@
// RUN: clang-cc -fsyntax-only -verify %s
// XFAIL
// <rdar://problem/6211479>
typedef int T[2];
@interface A
@property(assign) T p2; // expected-error {{FIXME: property has invalid type}}
@property(assign) T p2; // expected-error {{property cannot have array or function type 'T' (aka 'int [2]')}}
@end