rust/tests/ui/lint/lint-output-format.stderr

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

40 lines
1.5 KiB
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 15:56:47 +00:00
--> $DIR/lint-output-format.rs:6:1
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | extern crate lint_output_format;
2018-08-08 12:28:26 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: add `#![feature(unstable_test_feature)]` 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-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-output-format.rs:7:26
|
LL | use lint_output_format::{foo, bar};
| ^^^
|
= help: add `#![feature(unstable_test_feature)]` 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-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 15:56:47 +00:00
--> $DIR/lint-output-format.rs:7:31
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | use lint_output_format::{foo, bar};
2018-08-08 12:28:26 +00:00
| ^^^
|
= help: add `#![feature(unstable_test_feature)]` 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-08-08 12:28:26 +00:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
--> $DIR/lint-output-format.rs:12:14
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let _y = bar();
2018-08-08 12:28:26 +00:00
| ^^^
|
= help: add `#![feature(unstable_test_feature)]` 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-08-08 12:28:26 +00:00
error: aborting due to 4 previous errors
2018-08-08 12:28:26 +00:00
For more information about this error, try `rustc --explain E0658`.