diff options
author | Steve Naroff <snaroff@apple.com> | 2009-07-29 15:24:47 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2009-07-29 15:24:47 +0000 |
commit | ddc4b81aab0d423eb69fd03dd1028b42b70b4f37 (patch) | |
tree | 8af1ddf1934d5963a61e99b065ebcb95e33ea9c1 | |
parent | c715e78618eb69674be828b46dc52604dd3af271 (diff) |
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
-rw-r--r-- | test/SemaObjC/rdr-6211479-array-property.m | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/SemaObjC/rdr-6211479-array-property.m b/test/SemaObjC/rdr-6211479-array-property.m index f8e4a07cba..1781c5a404 100644 --- a/test/SemaObjC/rdr-6211479-array-property.m +++ b/test/SemaObjC/rdr-6211479-array-property.m @@ -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 |