mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
18 lines
317 B
Rust
18 lines
317 B
Rust
// needs-asm-support
|
|
|
|
use std::arch::asm;
|
|
|
|
#[naked]
|
|
//~^ the `#[naked]` attribute is an experimental feature
|
|
extern "C" fn naked() {
|
|
asm!("", options(noreturn))
|
|
}
|
|
|
|
#[naked]
|
|
//~^ the `#[naked]` attribute is an experimental feature
|
|
extern "C" fn naked_2() -> isize {
|
|
asm!("", options(noreturn))
|
|
}
|
|
|
|
fn main() {}
|