rust/tests/ui/imports/issue-37887.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
802 B
Plaintext
Raw Normal View History

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::*;
| ^^^^ you might be missing crate `test`
|
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
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`.