rustc/tests/ui/const-generics/apit-with-const-param.rs
2023-08-02 10:33:26 +02:00

8 lines
84 B
Rust

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