]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/apit-with-const-param.rs
Rollup merge of #88353 - jhpratt:stabilize-array-as-ref, r=joshtriplett
[rust.git] / src / test / 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() {}