blob: 29ad935c0149cd9a32f52ea5ee9861849f5fec96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//@ compile-flags: -Znext-solver=coherence
#![feature(generic_const_exprs)]
#![allow(incomplete_features)]
pub struct A<const z: [usize; x]> {}
//~^ ERROR: cannot find value `x` in this scope
//~| ERROR: `[usize; x]` is forbidden as the type of a const generic parameter
impl A<2> {
//~^ ERROR: mismatched types
pub const fn B() {}
//~^ ERROR: duplicate definitions
}
impl A<2> {
//~^ ERROR: mismatched types
pub const fn B() {}
}
fn main() {}
|