[cfe-commits] r77454 - /cfe/trunk/test/SemaObjC/rdr-6211479-array-property.m

Steve Naroff snaroff at apple.com
Wed Jul 29 08:24:55 PDT 2009


Author: snaroff
Date: Wed Jul 29 10:24:47 2009
New Revision: 77454

URL: http://llvm.org/viewvc/llvm-project?rev=77454&view=rev
Log:
Remove an ObjC-specific XFAIL (and tweak test).


Modified:
    cfe/trunk/test/SemaObjC/rdr-6211479-array-property.m

Modified: cfe/trunk/test/SemaObjC/rdr-6211479-array-property.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaObjC/rdr-6211479-array-property.m?rev=77454&r1=77453&r2=77454&view=diff

==============================================================================
--- cfe/trunk/test/SemaObjC/rdr-6211479-array-property.m (original)
+++ cfe/trunk/test/SemaObjC/rdr-6211479-array-property.m Wed Jul 29 10:24:47 2009
@@ -1,9 +1,8 @@
 // RUN: clang-cc -fsyntax-only -verify %s
-// XFAIL
 // <rdar://problem/6211479>
 
 typedef int T[2];
 
 @interface A
- at property(assign) T p2; // expected-error {{FIXME: property has invalid type}}
+ at property(assign) T p2; // expected-error {{property cannot have array or function type 'T' (aka 'int [2]')}}
 @end





More information about the cfe-commits mailing list