about summary refs log tree commit diff
path: root/tests/ui/const-generics/generic_const_exprs/unevaluated-const-ice-119731.rs
blob: 02a95ed3e9082d10b9258a4527335a2d112428df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// rust-lang/rust#119731
// ICE ... unevaluated constant UnevaluatedConst

#![feature(generic_const_exprs)]
#![allow(incomplete_features)]

mod v20 {
    const v4: usize = 512;
    pub type v11 = [[usize; v4]; v4];
    //~^ WARN type `v11` should have an upper camel case name
    const v2: v11 = [[256; v4]; v4];

    const v0: [[usize; v4]; v4] = v6(v8);
    //~^ ERROR cannot find value `v8` in this scope
    //~| ERROR cannot find function `v6` in this scope
    pub struct v17<const v10: usize, const v7: v11> {
        //~^ WARN type `v17` should have an upper camel case name
        //~| ERROR `[[usize; v4]; v4]` is forbidden as the type of a const generic parameter
        _p: (),
    }

    impl v17<512, v0> {
        pub const fn v21() -> v18 {}
        //~^ ERROR cannot find type `v18` in this scope
        //~| ERROR duplicate definitions with name `v21`
    }

    impl<const v10: usize> v17<v10, v2> {
        //~^ ERROR maximum number of nodes exceeded in constant v20::v17::<v10, v2>::{constant#0}
        //~| ERROR maximum number of nodes exceeded in constant v20::v17::<v10, v2>::{constant#0}
        //~| ERROR maximum number of nodes exceeded in constant v20::v17::<v10, v2>::{constant#0}
        //~| ERROR maximum number of nodes exceeded in constant v20::v17::<v10, v2>::{constant#0}
        //~| ERROR maximum number of nodes exceeded in constant v20::v17::<v10, v2>::{constant#0}
        //~| ERROR maximum number of nodes exceeded in constant v20::v17::<v10, v2>::{constant#0}
        pub const fn v21() -> v18 {
            //~^ ERROR cannot find type `v18` in this scope
            v18 { _p: () }
            //~^ ERROR cannot find struct, variant or union type `v18` in this scope
        }
    }
}
pub use v20::{v13, v17};
//~^ ERROR unresolved import `v20::v13`
fn main() {}