]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-output-format.stderr
Rollup merge of #87180 - notriddle:notriddle/sidebar-keyboard-mobile, r=GuillaumeGomez
[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:6:1
3    |
4 LL | extern crate lint_output_format;
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:7:31
11    |
12 LL | use lint_output_format::{foo, bar};
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:11:14
19    |
20 LL |     let _y = bar();
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`.