2024-08-27 09:46:39 -05:00
|
|
|
//@ needs-asm-support
|
|
|
|
#![feature(naked_functions)]
|
|
|
|
#![feature(fn_align)]
|
|
|
|
#![crate_type = "lib"]
|
2024-09-05 06:45:26 -05:00
|
|
|
use std::arch::naked_asm;
|
2024-08-27 09:46:39 -05:00
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
//~^ ERROR attribute should be applied to a struct, enum, or union [E0517]
|
|
|
|
#[naked]
|
|
|
|
extern "C" fn example1() {
|
|
|
|
//~^ NOTE not a struct, enum, or union
|
2024-09-05 06:45:26 -05:00
|
|
|
unsafe { naked_asm!("") }
|
2024-08-27 09:46:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[repr(transparent)]
|
|
|
|
//~^ ERROR attribute should be applied to a struct, enum, or union [E0517]
|
|
|
|
#[naked]
|
|
|
|
extern "C" fn example2() {
|
|
|
|
//~^ NOTE not a struct, enum, or union
|
2024-09-05 06:45:26 -05:00
|
|
|
unsafe { naked_asm!("") }
|
2024-08-27 09:46:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[repr(align(16), C)]
|
|
|
|
//~^ ERROR attribute should be applied to a struct, enum, or union [E0517]
|
|
|
|
#[naked]
|
|
|
|
extern "C" fn example3() {
|
|
|
|
//~^ NOTE not a struct, enum, or union
|
2024-09-05 06:45:26 -05:00
|
|
|
unsafe { naked_asm!("") }
|
2024-08-27 09:46:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// note: two errors because of packed and C
|
|
|
|
#[repr(C, packed)]
|
|
|
|
//~^ ERROR attribute should be applied to a struct or union [E0517]
|
|
|
|
//~| ERROR attribute should be applied to a struct, enum, or union [E0517]
|
|
|
|
#[naked]
|
|
|
|
extern "C" fn example4() {
|
|
|
|
//~^ NOTE not a struct, enum, or union
|
|
|
|
//~| NOTE not a struct or union
|
2024-09-05 06:45:26 -05:00
|
|
|
unsafe { naked_asm!("") }
|
2024-08-27 09:46:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[repr(u8)]
|
|
|
|
//~^ ERROR attribute should be applied to an enum [E0517]
|
|
|
|
#[naked]
|
|
|
|
extern "C" fn example5() {
|
|
|
|
//~^ NOTE not an enum
|
2024-09-05 06:45:26 -05:00
|
|
|
unsafe { naked_asm!("") }
|
2024-08-27 09:46:39 -05:00
|
|
|
}
|