diff options
Diffstat (limited to 'clang/test/SemaCXX/flexible-array-test.cpp')
-rw-r--r-- | clang/test/SemaCXX/flexible-array-test.cpp | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/clang/test/SemaCXX/flexible-array-test.cpp b/clang/test/SemaCXX/flexible-array-test.cpp index 95d8bb1aa41..e6c3132801f 100644 --- a/clang/test/SemaCXX/flexible-array-test.cpp +++ b/clang/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[]; +}; + +} |