rust/src/test/ui/issues/issue-16966.stderr

22 lines
915 B
Plaintext
Raw Normal View History

2021-10-08 18:15:53 -05:00
error[E0283]: 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
|
LL | panic!(std::default::Default::default());
2021-10-14 13:28:28 -05:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type for type parameter `M` declared on the function `begin_panic`
2018-07-15 16:11:54 -05:00
|
2021-10-08 18:15:53 -05:00
= note: cannot satisfy `_: Any`
note: required by a bound in `begin_panic`
--> $SRC_DIR/std/src/panicking.rs:LL:COL
|
LL | pub fn begin_panic<M: Any + Send>(msg: M) -> ! {
| ^^^ required by this bound in `begin_panic`
= note: this error originates in the macro `$crate::panic::panic_2015` (in Nightly builds, run with -Z macro-backtrace for more info)
2021-10-08 18:15:53 -05:00
help: consider specifying the type argument in the function call
|
LL | $crate::rt::begin_panic::<M>($msg)
| +++++
2018-07-15 16:11:54 -05:00
error: aborting due to previous error
2021-10-08 18:15:53 -05:00
For more information about this error, try `rustc --explain E0283`.