2024-04-18 21:03:17 +00:00
|
|
|
error[E0432]: unresolved import `test`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-37887.rs:3:9
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2024-04-18 21:03:17 +00:00
|
|
|
LL | use test::*;
|
2024-07-23 19:43:46 +00:00
|
|
|
| ^^^^ you might be missing crate `test`
|
2022-05-22 02:48:35 +00:00
|
|
|
|
|
2024-07-24 19:31:02 +00:00
|
|
|
help: consider importing the `test` crate
|
|
|
|
|
|
|
|
|
LL + extern crate test;
|
|
|
|
|
|
2018-07-15 21:11:54 +00:00
|
|
|
|
2024-04-18 21:03:17 +00:00
|
|
|
error[E0658]: use of unstable library feature 'test'
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-37887.rs:2:5
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2024-04-18 21:03:17 +00:00
|
|
|
LL | extern crate test;
|
2018-07-15 21:11:54 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2024-04-18 21:03:17 +00:00
|
|
|
= note: see issue #50297 <https://github.com/rust-lang/rust/issues/50297> for more information
|
|
|
|
= help: add `#![feature(test)]` to the crate attributes to enable
|
2024-01-10 06:39:02 +00:00
|
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2019-04-17 17:26:38 +00:00
|
|
|
Some errors have detailed explanations: E0432, E0658.
|
2018-07-15 21:11:54 +00:00
|
|
|
For more information about an error, try `rustc --explain E0432`.
|