diff options
Diffstat (limited to 'bindgen-tests/tests/headers/incomplete-array-padding.h')
-rw-r--r-- | bindgen-tests/tests/headers/incomplete-array-padding.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bindgen-tests/tests/headers/incomplete-array-padding.h b/bindgen-tests/tests/headers/incomplete-array-padding.h new file mode 100644 index 00000000..3fcc4c1a --- /dev/null +++ b/bindgen-tests/tests/headers/incomplete-array-padding.h @@ -0,0 +1,4 @@ +struct foo { + char a : 1; + void *b[]; +}; |