blob: fee22a1d070b85f9698e3ab9d5887a17859a6fad (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0080]: evaluation of constant value failed
--> $DIR/const-unwrap.rs:7:18
|
LL | const BAR: i32 = Option::<i32>::None.unwrap();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the evaluated program panicked at 'called `Option::unwrap()` on a `None` value', $DIR/const-unwrap.rs:7:38
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0080`.
|