Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
asm
/
global-asm-with-lifetimes.rs
blob: 2709ff90fe333f27bbdcd29f9858d0f118faf77c [
file
] [
log
] [
blame
]
//@ build-pass
//@ needs-asm-support
fn
foo
<
T
>()
{}
core
::
arch
::
global_asm
!(
"/* {} */"
,
sym foo
::<&
'
static
()>);
fn
main
()
{}