From: Steve Naroff Date: Wed, 29 Jul 2009 15:24:47 +0000 (+0000) Subject: Remove an ObjC-specific XFAIL (and tweak test). X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ddc4b81aab0d423eb69fd03dd1028b42b70b4f37;p=clang 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 --- 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 // 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