Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
asm
/
const-resolve-error.rs
blob: 19c8af0d542ef1c434ed7ffdad36e0f7a72b9882 [
file
]
//@ edition:2021
//@ needs-asm-support
use
std
::
arch
::
asm
;
async
unsafe
fn
foo
<
'
a
>()
{
asm
!(
"/* {0} */"
,
const
N
);
//~ ERROR E0425
}
fn
main
()
{}