blob: 4ba5ccc57f6526d215c553a1226628f842e0ea7d [file] [log] [blame]
//@ check-pass
//@ needs-asm-support
#![crate_type = "lib"]
use std::arch::naked_asm;
#[unsafe(naked)]
pub extern "C" fn naked(p: char) -> u128 {
//~^ WARN uses type `char`
naked_asm!("")
}