]> git.lizzy.rs Git - rust.git/blob - src/test/ui/panic-handler/weak-lang-item.stderr
Auto merge of #86155 - alexcrichton:abort-on-unwind, r=nikomatsakis
[rust.git] / src / test / ui / panic-handler / weak-lang-item.stderr
1 error[E0259]: the name `core` is defined multiple times
2   --> $DIR/weak-lang-item.rs:9:1
3    |
4 LL | extern crate core;
5    | ^^^^^^^^^^^^^^^^^^ `core` reimported here
6    |
7    = note: `core` must be defined only once in the type namespace of this module
8 help: you can use `as` to change the binding name of the import
9    |
10 LL | extern crate core as other_core;
11    |
12
13 error: language item required, but not found: `eh_personality`
14
15 error: `#[panic_handler]` function required, but not found
16
17 error: aborting due to 3 previous errors
18
19 For more information about this error, try `rustc --explain E0259`.