about summary refs log tree commit diff
path: root/tests/ui/asm/global-asm-with-lifetimes.rs
blob: 2709ff90fe333f27bbdcd29f9858d0f118faf77c (plain)
1
2
3
4
5
6
7
8
//@ build-pass
//@ needs-asm-support

fn foo<T>() {}

core::arch::global_asm!("/* {} */", sym foo::<&'static ()>);

fn main() {}