Follow up to https://github.com/rust-lang-nursery/rust-bindgen/pull/1001 ### Input C/C++ Header ```C++ struct { unsigned : 632; } a; ``` ### Bindgen Invocation ``` $ bindgen input.h ``` ### Actual Results Panic when running the layout tests: our generated struct ends up with the wrong size. ### Expected Results We generate a struct with the correct layout, and it passes its layout tests.