rustc/tests/ui/packed/issue-27060-2.rs
2023-08-02 10:33:26 +02:00

7 lines
111 B
Rust

#[repr(packed)]
pub struct Bad<T: ?Sized> {
data: T, //~ ERROR the size for values of type
}
fn main() {}