File: unevaluated-const-ice-119731.rs

package info (click to toggle)
rustc 1.86.0%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, forky, sid
  • size: 913,560 kB
  • sloc: xml: 158,127; python: 35,921; javascript: 19,689; sh: 19,600; cpp: 18,906; ansic: 13,124; asm: 4,376; makefile: 708; perl: 29; lisp: 29; ruby: 19; sql: 11
file content (40 lines) | stat: -rw-r--r-- 1,423 bytes parent folder | download | duplicates (12)
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
// 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}
        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() {}