]> git.lizzy.rs Git - rust.git/blob - src/test/ui/packed/issue-27060-2.rs
Pin panic-in-drop=abort test to old pass manager
[rust.git] / src / test / ui / packed / issue-27060-2.rs
1 #[repr(packed)]
2 pub struct Bad<T: ?Sized> {
3     data: T, //~ ERROR the size for values of type
4 }
5
6 fn main() {}