2021-07-29 21:15:53 +00:00
|
|
|
error[E0658]: `?` is not allowed in a `const fn`
|
2020-05-21 19:49:38 +00:00
|
|
|
--> $DIR/try.rs:6:5
|
2019-11-18 05:11:42 +00:00
|
|
|
|
|
|
|
|
LL | x?;
|
|
|
|
| ^^
|
2021-07-29 21:15:53 +00:00
|
|
|
|
|
|
|
|
= note: see issue #74935 <https://github.com/rust-lang/rust/issues/74935> for more information
|
|
|
|
= help: add `#![feature(const_try)]` to the crate attributes to enable
|
2019-11-18 05:11:42 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2019-11-18 05:11:42 +00:00
|
|
|
|
2021-07-29 21:15:53 +00:00
|
|
|
For more information about this error, try `rustc --explain E0658`.
|