Improve on flexible array diagnostics (PR7029).



git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@104739 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/SemaCXX/flexible-array-test.cpp b/test/SemaCXX/flexible-array-test.cpp
index e58992b..02e3f83 100644
--- a/test/SemaCXX/flexible-array-test.cpp
+++ b/test/SemaCXX/flexible-array-test.cpp
@@ -41,5 +41,5 @@
 
 struct X {
    int blah;
-   S strings[];	// expected-error {{flexible array 'strings' must have a non-dependent, non-POD type}}
+   S strings[];	// expected-error {{flexible array member 'strings' of non-POD element type 'S []'}}
 };