rust/src/test/ui/duplicate_entry_error.stderr

15 lines
402 B
Plaintext
Raw Normal View History

error[E0152]: found duplicate lang item `panic_impl`
2018-12-25 09:56:47 -06:00
--> $DIR/duplicate_entry_error.rs:10:1
2018-08-08 07:28:26 -05:00
|
LL | / fn panic_impl(info: &PanicInfo) -> ! {
2019-03-09 06:03:44 -06:00
LL | |
2018-08-08 07:28:26 -05:00
LL | | loop {}
LL | | }
| |_^
|
2020-01-22 17:57:38 -06:00
= note: the lang item is first defined in crate `std` (which `duplicate_entry_error` depends on)
2018-08-08 07:28:26 -05:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0152`.