rustc/tests/ui/const-generics/apit-with-const-param.rs
2024-06-21 09:39:33 +02:00

8 lines
85 B
Rust

//@ check-pass
trait Trait {}
fn f<const N: usize>(_: impl Trait) {}
fn main() {}