mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 12:07:40 +00:00
12 lines
151 B
Rust
12 lines
151 B
Rust
//@ build-pass
|
|
//@ needs-asm-support
|
|
|
|
fn foo<const N: usize>() {}
|
|
|
|
core::arch::global_asm!("/* {} */", sym foo::<{
|
|
|| {};
|
|
0
|
|
}>);
|
|
|
|
fn main() {}
|