diff options
Diffstat (limited to 'test/SemaCXX/flexible-array-test.cpp')
-rw-r--r-- | test/SemaCXX/flexible-array-test.cpp | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/test/SemaCXX/flexible-array-test.cpp b/test/SemaCXX/flexible-array-test.cpp index 95d8bb1..e6c3132 100644 --- a/test/SemaCXX/flexible-array-test.cpp +++ b/test/SemaCXX/flexible-array-test.cpp @@ -51,5 +51,19 @@ class A { union B { int s; - char c[]; // expected-error {{field has incomplete type 'char []'}} + char c[]; +}; + +namespace rdar9065507 { + +struct StorageBase { + long ref_count; + unsigned size; + unsigned capacity; }; + +struct Storage : StorageBase { + int data[]; +}; + +} |