]> git.proxmox.com Git - rustc.git/blob - tests/ui/const-generics/apit-with-const-param.rs
bump version to 1.80.1+dfsg1-1~bpo12+pve1
[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() {}