]> granicus.if.org Git - clang/commitdiff
Remove an ObjC-specific XFAIL (and tweak test).
authorSteve Naroff <snaroff@apple.com>
Wed, 29 Jul 2009 15:24:47 +0000 (15:24 +0000)
committerSteve Naroff <snaroff@apple.com>
Wed, 29 Jul 2009 15:24:47 +0000 (15:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77454 91177308-0d34-0410-b5e6-96231b3b80d8

test/SemaObjC/rdr-6211479-array-property.m

index f8e4a07cba584b8ff6685d4d98401b92cb9791ad..1781c5a40402828d10459303557d56887f72e8e4 100644 (file)
@@ -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