2020-12-28 17:15:16 +00:00
error[E0259]: the name `core` is defined multiple times
2021-04-29 17:04:16 +00:00
--> $DIR/weak-lang-item.rs:9:1
2020-12-28 17:15:16 +00:00
|
LL | extern crate core;
| ^^^^^^^^^^^^^^^^^^ `core` reimported here
|
= note: `core` must be defined only once in the type namespace of this module
help: you can use `as` to change the binding name of the import
|
LL | extern crate core as other_core;
|
2022-07-08 15:45:55 +00:00
error: `#[panic_handler]` function required, but not found
2023-10-02 12:32:31 +00:00
error: unwinding panics are not supported without std
2021-12-12 02:04:00 +00:00
|
2023-10-02 12:32:31 +00:00
= help: using nightly cargo, use -Zbuild-std with panic="abort" to avoid unwinding
= note: since the core library is usually precompiled with panic="unwind", rebuilding your crate with panic="abort" may not be enough to fix the problem
2020-12-28 17:15:16 +00:00
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0259`.