2022-09-06 10:02:42 -05:00
|
|
|
#![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,
|
|
|
|
}
|
2023-05-01 08:36:52 -05:00
|
|
|
|
|
|
|
#[repr(uwu)] //~ERROR: unrecognized representation hint
|
|
|
|
#[doc(owo)] //~WARN: unknown `doc` attribute
|
|
|
|
//~^ WARN: this was previously
|
|
|
|
pub struct Owo5;
|