Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
inline_asm.rs
blob: 20ea6a8e99426549707649f2ccc4f312473c1e47 [
file
] [
log
] [
blame
] [
edit
]
//@ needs-asm-support
use
std
::
arch
::
asm
;
const
_
:
()
=
unsafe
{
asm
!(
"nop"
)
};
//~^ ERROR inline assembly
fn
main
()
{}