summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/apit-with-const-param.rs
blob: 2a04dc313e9b2e56c96936fa29e612b02cf9e584 (plain)
1
2
3
4
5
6
7
// check-pass

trait Trait {}

fn f<const N: usize>(_: impl Trait) {}

fn main() {}