Rollup merge of #29863 - steveklabnik:gh29526, r=alexcrichton

Fixes #29526
This commit is contained in:
Steve Klabnik 2015-11-16 16:22:48 -05:00
commit bc6c16d4cb

View File

@ -26,6 +26,9 @@ still consumes a byte of space.
* DSTs, tuples, and tagged unions are not a concept in C and as such are never
FFI safe.
* Tuple structs are like structs with regards to `repr(C)`, as the only
difference from a struct is that the fields arent named.
* **If the type would have any [drop flags], they will still be added**
* This is equivalent to one of `repr(u*)` (see the next section) for enums. The