]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/const-eval/issue-44578.stderr
During MirBorrowck, ignore ConstEvalCounter
[rust.git] / tests / ui / consts / const-eval / issue-44578.stderr
1 error[E0080]: evaluation of `<Bar<u16, u8> as Foo>::AMT` failed
2   --> $DIR/issue-44578.rs:13:24
3    |
4 LL |     const AMT: usize = [A::AMT][(A::AMT > B::AMT) as usize];
5    |                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ index out of bounds: the length is 1 but the index is 1
6
7 note: erroneous constant used
8   --> $DIR/issue-44578.rs:25:20
9    |
10 LL |     println!("{}", <Bar<u16, u8> as Foo>::AMT);
11    |                    ^^^^^^^^^^^^^^^^^^^^^^^^^^
12
13 note: erroneous constant used
14   --> $DIR/issue-44578.rs:25:20
15    |
16 LL |     println!("{}", <Bar<u16, u8> as Foo>::AMT);
17    |                    ^^^^^^^^^^^^^^^^^^^^^^^^^^
18    |
19    = note: this note originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)
20
21 note: erroneous constant used
22   --> $DIR/issue-44578.rs:25:20
23    |
24 LL |     println!("{}", <Bar<u16, u8> as Foo>::AMT);
25    |                    ^^^^^^^^^^^^^^^^^^^^^^^^^^
26    |
27    = note: this note originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)
28
29 note: erroneous constant used
30   --> $DIR/issue-44578.rs:25:20
31    |
32 LL |     println!("{}", <Bar<u16, u8> as Foo>::AMT);
33    |                    ^^^^^^^^^^^^^^^^^^^^^^^^^^
34    |
35    = note: this note originates in the macro `$crate::format_args_nl` which comes from the expansion of the macro `println` (in Nightly builds, run with -Z macro-backtrace for more info)
36
37 error: aborting due to previous error
38
39 For more information about this error, try `rustc --explain E0080`.