2018-08-08 14:28:26 +02:00
|
|
|
error[E0658]: use of unstable library feature 'unstable_test_feature'
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/lint-output-format.rs:6:1
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | extern crate lint_output_format; //~ ERROR use of unstable library feature
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= 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 08:56:47 -07:00
|
|
|
--> $DIR/lint-output-format.rs:7:31
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | use lint_output_format::{foo, bar}; //~ ERROR use of unstable library feature
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
= 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 08:56:47 -07:00
|
|
|
--> $DIR/lint-output-format.rs:11:14
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | let _y = bar(); //~ ERROR use of unstable library feature
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
= 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`.
|