rust/tests/ui/rfcs/rfc-2091-track-caller/error-with-naked.rs
2024-10-06 18:12:25 +02:00

29 lines
458 B
Rust

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