mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 12:07:40 +00:00
11 lines
153 B
Rust
11 lines
153 B
Rust
//@ edition:2021
|
|
//@ needs-asm-support
|
|
|
|
use std::arch::asm;
|
|
|
|
async unsafe fn foo<'a>() {
|
|
asm!("/* {0} */", const N); //~ ERROR E0425
|
|
}
|
|
|
|
fn main() {}
|