Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
unsafe
/
inline_asm.rs
blob: 039160f5e17d864a163684a93770b1acf8a7b186 [
file
] [
log
] [
blame
] [
edit
]
//@ needs-asm-support
use
std
::
arch
::
asm
;
fn
main
()
{
asm
!(
"nop"
);
//~ ERROR use of inline assembly is unsafe and requires unsafe function or block
}