rust/tests/ui/rfcs/rfc-2091-track-caller/error-with-naked.rs
2025-04-20 11:18:38 +02:00

27 lines
445 B
Rust

//@ needs-asm-support
use std::arch::naked_asm;
#[track_caller] //~ ERROR [E0736]
//~^ ERROR `#[track_caller]` requires Rust ABI
#[unsafe(naked)]
extern "C" fn f() {
unsafe {
naked_asm!("");
}
}
struct S;
impl S {
#[track_caller] //~ ERROR [E0736]
//~^ ERROR `#[track_caller]` requires Rust ABI
#[unsafe(naked)]
extern "C" fn g() {
unsafe {
naked_asm!("");
}
}
}
fn main() {}