blob: 3bc62141927ae14358312ae03de46b01851b6202 [file] [log] [blame]
// check-pass
// revisions: full min
#![cfg_attr(full, feature(const_generics))]
#![cfg_attr(full, allow(incomplete_features))]
trait Trait {}
fn f<const N: usize>(_: impl Trait) {}
fn main() {}