]> git.proxmox.com Git - rustc.git/blob - src/test/ui/consts/const-eval/issue-50814-2.stderr
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / ui / consts / const-eval / issue-50814-2.stderr
1 error: any use of this value will cause an error
2 --> $DIR/issue-50814-2.rs:14:24
3 |
4 LL | const BAR: usize = [5, 6, 7][T::BOO];
5 | -------------------^^^^^^^^^^^^^^^^^-
6 | |
7 | index out of bounds: the length is 3 but the index is 42
8 |
9 = note: `#[deny(const_err)]` on by default
10 = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
11 = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
12
13 error[E0080]: evaluation of constant value failed
14 --> $DIR/issue-50814-2.rs:19:6
15 |
16 LL | &<A<T> as Foo<T>>::BAR
17 | ^^^^^^^^^^^^^^^^^^^^^ referenced constant has errors
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0080`.