11 lines
151 B
Rust
11 lines
151 B
Rust
//@ build-pass
|
|
//@ needs-asm-support
|
|
|
|
fn foo<const N: usize>() {}
|
|
|
|
core::arch::global_asm!("/* {} */", sym foo::<{
|
|
|| {};
|
|
0
|
|
}>);
|
|
|
|
fn main() {}
|