2021-10-18 12:33:38 -05:00
|
|
|
error[E0282]: type annotations needed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-16966.rs:2:5
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
2018-07-19 07:15:43 -05:00
|
|
|
LL | panic!(std::default::Default::default());
|
2022-02-14 06:25:26 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type of the type parameter `M` declared on the function `begin_panic`
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
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)
|
2022-02-14 06:25:26 -06:00
|
|
|
help: consider specifying the generic argument
|
2022-06-02 03:25:47 -05:00
|
|
|
--> $SRC_DIR/std/src/panic.rs:LL:COL
|
2022-02-14 06:25:26 -06:00
|
|
|
|
|
|
|
|
LL | $crate::rt::begin_panic::<M>($msg)
|
|
|
|
| +++++
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2021-10-18 12:33:38 -05:00
|
|
|
For more information about this error, try `rustc --explain E0282`.
|