about summary refs log tree commit diff
path: root/tests/ui/consts/required-consts/interpret-in-const-called-fn.opt.stderr
blob: c9fd476bd8b721a16c344f5630296d75321c4214 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0080]: evaluation panicked: explicit panic
  --> $DIR/interpret-in-const-called-fn.rs:8:19
   |
LL |     const C: () = panic!();
   |                   ^^^^^^^^ evaluation of `Fail::<i32>::C` failed here

note: erroneous constant encountered
  --> $DIR/interpret-in-const-called-fn.rs:18:9
   |
LL |         Fail::<T>::C;
   |         ^^^^^^^^^^^^

error: aborting due to 1 previous error

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