Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
a10a02bf5fd00e4b34f1856af17d058dd5ec06f0
/
.
/
src
/
test
/
pretty
/
llvm-asm-clobbers.rs
blob: 2c09646e47e4ab1b421af5b9a1e9bea1360733a5 [
file
] [
log
] [
blame
]
#![
feature
(
llvm_asm
)]
pub
fn
main
()
{
unsafe
{
llvm_asm
!(
""
:
:
:
"hello"
,
"world"
)
};
}