2020-07-30 14:32:20 -05:00
|
|
|
error: any use of this value will cause an error
|
|
|
|
--> $SRC_DIR/core/src/option.rs:LL:COL
|
|
|
|
|
|
|
|
|
LL | None => panic!("called `Option::unwrap()` on a `None` value"),
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| the evaluated program panicked at 'called `Option::unwrap()` on a `None` value', $DIR/const-unwrap.rs:9:38
|
2021-01-09 09:52:06 -06:00
|
|
|
| inside `Option::<i32>::unwrap` at $SRC_DIR/core/src/panic.rs:LL:COL
|
2020-07-30 14:32:20 -05:00
|
|
|
| inside `BAR` at $DIR/const-unwrap.rs:9:18
|
|
|
|
|
|
|
|
|
::: $DIR/const-unwrap.rs:9:1
|
|
|
|
|
|
|
|
|
LL | const BAR: i32 = Option::<i32>::None.unwrap();
|
|
|
|
| ----------------------------------------------
|
|
|
|
|
|
|
|
|
= note: `#[deny(const_err)]` on by default
|
2021-01-30 07:49:22 -06:00
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
|
2021-02-13 13:52:25 -06:00
|
|
|
= note: this error originates in the macro `$crate::panic::panic_2015` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2020-07-30 14:32:20 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|