summaryrefslogtreecommitdiff
path: root/tests/ui/consts/miri_unleashed/assoc_const_2.stderr
blob: ae7b03fc9dde3bef1e2b9f8b75a128da3008c795 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error[E0080]: evaluation of `<std::string::String as Bar<std::string::String>>::F` failed
  --> $DIR/assoc_const_2.rs:10:20
   |
LL |     const F: u32 = 100 / U::X;
   |                    ^^^^^^^^^^ attempt to divide `100_u32` by zero

note: erroneous constant used
  --> $DIR/assoc_const_2.rs:27:13
   |
LL |     let y = <String as Bar<String>>::F;
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^

note: erroneous constant used
  --> $DIR/assoc_const_2.rs:27:13
   |
LL |     let y = <String as Bar<String>>::F;
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^

error: aborting due to previous error

For more information about this error, try `rustc --explain E0080`.