rust/src/test/ui/lint/lint-output-format.stderr

28 lines
922 B
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
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
error[E0658]: use of unstable library feature 'unstable_test_feature'
2018-12-25 15:56:47 +00:00
--> $DIR/lint-output-format.rs:11: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
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0658`.