rust/tests/ui/asm/naked-with-invalid-repr-attr.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1.2 KiB
Rust
Raw Normal View History

//@ needs-asm-support
#![feature(naked_functions)]
#![feature(fn_align)]
#![crate_type = "lib"]
use std::arch::naked_asm;
#[repr(C)]
//~^ ERROR attribute should be applied to a struct, enum, or union [E0517]
2025-03-29 17:30:11 +01:00
#[unsafe(naked)]
extern "C" fn example1() {
//~^ NOTE not a struct, enum, or union
2025-03-29 17:30:11 +01:00
naked_asm!("")
}
#[repr(transparent)]
//~^ ERROR attribute should be applied to a struct, enum, or union [E0517]
2025-03-29 17:30:11 +01:00
#[unsafe(naked)]
extern "C" fn example2() {
//~^ NOTE not a struct, enum, or union
2025-03-29 17:30:11 +01:00
naked_asm!("")
}
#[repr(align(16), C)]
//~^ ERROR attribute should be applied to a struct, enum, or union [E0517]
2025-03-29 17:30:11 +01:00
#[unsafe(naked)]
extern "C" fn example3() {
//~^ NOTE not a struct, enum, or union
2025-03-29 17:30:11 +01:00
naked_asm!("")
}
// 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]
2025-03-29 17:30:11 +01:00
#[unsafe(naked)]
extern "C" fn example4() {
//~^ NOTE not a struct, enum, or union
//~| NOTE not a struct or union
2025-03-29 17:30:11 +01:00
naked_asm!("")
}
#[repr(u8)]
//~^ ERROR attribute should be applied to an enum [E0517]
2025-03-29 17:30:11 +01:00
#[unsafe(naked)]
extern "C" fn example5() {
//~^ NOTE not an enum
2025-03-29 17:30:11 +01:00
naked_asm!("")
}