]> git.proxmox.com Git - rustc.git/blob - tests/ui/const-generics/apit-with-const-param.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / const-generics / apit-with-const-param.rs
1 // check-pass
2
3 trait Trait {}
4
5 fn f<const N: usize>(_: impl Trait) {}
6
7 fn main() {}