2021-06-15 19:16:10 -04:00
|
|
|
error[E0080]: evaluation of constant value failed
|
2021-07-09 15:21:58 +02:00
|
|
|
--> $DIR/const-unwrap.rs:7:18
|
2020-07-30 12:32:20 -07:00
|
|
|
|
|
|
|
|
LL | const BAR: i32 = Option::<i32>::None.unwrap();
|
2021-07-09 15:21:58 +02:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the evaluated program panicked at 'called `Option::unwrap()` on a `None` value', $DIR/const-unwrap.rs:7:38
|
2020-07-30 12:32:20 -07:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2021-05-25 20:54:59 -05:00
|
|
|
For more information about this error, try `rustc --explain E0080`.
|