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