aboutsummaryrefslogtreecommitdiff
path: root/test/ARCMT/cxx-checking.mm
diff options
context:
space:
mode:
Diffstat (limited to 'test/ARCMT/cxx-checking.mm')
-rw-r--r--test/ARCMT/cxx-checking.mm3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/ARCMT/cxx-checking.mm b/test/ARCMT/cxx-checking.mm
index 2f5d5d51655a..aa3bc466f672 100644
--- a/test/ARCMT/cxx-checking.mm
+++ b/test/ARCMT/cxx-checking.mm
@@ -1,5 +1,4 @@
// RUN: %clang_cc1 -arcmt-check -verify -triple x86_64-apple-darwin10 -fsyntax-only -fblocks %s
-// DISABLE: mingw32
// Classes that have an Objective-C object pointer.
struct HasObjectMember0 {
@@ -81,7 +80,7 @@ int check_non_pod_block1[__is_pod(int (^ __unsafe_unretained)(int))? 1 : -1];
struct FlexibleArrayMember0 {
int length;
- id array[]; // expected-error{{flexible array member 'array' of non-POD element type 'id __strong[]'}}
+ id array[]; // expected-error{{flexible array member 'array' of type 'id __strong[]' with non-trivial destruction}}
};
struct FlexibleArrayMember1 {