mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
16 lines
281 B
Rust
16 lines
281 B
Rust
// check-pass
|
|
// needs-asm-support
|
|
#![feature(naked_functions)]
|
|
#![crate_type = "lib"]
|
|
|
|
use std::arch::asm;
|
|
|
|
#[naked]
|
|
pub extern "C" fn naked(p: char) -> u128 {
|
|
//~^ WARN uses type `char`
|
|
//~| WARN uses type `u128`
|
|
unsafe {
|
|
asm!("", options(noreturn));
|
|
}
|
|
}
|