rust/tests/ui/consts/const-eval/issue-50814-2.mir-opt.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
500 B
Plaintext
Raw Normal View History

2022-09-21 06:05:20 -05:00
error[E0080]: evaluation of `<A<()> as Foo<()>>::BAR` failed
--> $DIR/issue-50814-2.rs:16:24
|
2019-03-09 06:03:44 -06:00
LL | const BAR: usize = [5, 6, 7][T::BOO];
2022-09-21 06:05:20 -05:00
| ^^^^^^^^^^^^^^^^^ index out of bounds: the length is 3 but the index is 42
2018-06-02 20:01:06 -05:00
note: erroneous constant encountered
--> $DIR/issue-50814-2.rs:20:6
|
2019-03-09 06:03:44 -06:00
LL | &<A<T> as Foo<T>>::BAR
| ^^^^^^^^^^^^^^^^^^^^^
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0080`.