rust/tests/ui/repr/invalid_repr_list_help.rs
2023-01-11 09:32:08 +00:00

18 lines
365 B
Rust

#![crate_type = "lib"]
#[repr(uwu)] //~ERROR: unrecognized representation hint
pub struct OwO;
#[repr(uwu = "a")] //~ERROR: unrecognized representation hint
pub struct OwO2(i32);
#[repr(uwu(4))] //~ERROR: unrecognized representation hint
pub struct OwO3 {
x: i32,
}
#[repr(uwu, u8)] //~ERROR: unrecognized representation hint
pub enum OwO4 {
UwU = 1,
}