]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-output-format.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / lint / lint-output-format.stderr
1 error[E0658]: use of unstable library feature 'unstable_test_feature'
2   --> $DIR/lint-output-format.rs:16:1
3    |
4 LL | extern crate lint_output_format; //~ ERROR use of unstable library feature
5    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = help: add #![feature(unstable_test_feature)] to the crate attributes to enable
8
9 error[E0658]: use of unstable library feature 'unstable_test_feature'
10   --> $DIR/lint-output-format.rs:17:31
11    |
12 LL | use lint_output_format::{foo, bar}; //~ ERROR use of unstable library feature
13    |                               ^^^
14    |
15    = help: add #![feature(unstable_test_feature)] to the crate attributes to enable
16
17 error[E0658]: use of unstable library feature 'unstable_test_feature'
18   --> $DIR/lint-output-format.rs:21:14
19    |
20 LL |     let _y = bar(); //~ ERROR use of unstable library feature
21    |              ^^^
22    |
23    = help: add #![feature(unstable_test_feature)] to the crate attributes to enable
24
25 error: aborting due to 3 previous errors
26
27 For more information about this error, try `rustc --explain E0658`.