blob: a70606c4a7d3254a2c49b363f5288aade69f0cd4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// revisions: full min
#![cfg_attr(full, feature(const_generics))]
#![cfg_attr(full, allow(incomplete_features))]
fn foo<const N: usize, const A: [u8; N]>() {}
//~^ ERROR the type of const parameters must not
//[min]~| ERROR `[u8; _]` is forbidden as the type of a const generic parameter
fn main() {
foo::<_, {[1]}>();
//[full]~^ ERROR type provided when a constant was expected
//[full]~| ERROR mismatched types
}
|