]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/lint-output-format.stderr
Auto merge of #106884 - clubby789:fieldless-enum-debug, r=michaelwoerister
[rust.git] / tests / 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:26
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:7:31
19    |
20 LL | use lint_output_format::{foo, bar};
21    |                               ^^^
22    |
23    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
24
25 error[E0658]: use of unstable library feature 'unstable_test_feature'
26   --> $DIR/lint-output-format.rs:12:14
27    |
28 LL |     let _y = bar();
29    |              ^^^
30    |
31    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
32
33 error: aborting due to 4 previous errors
34
35 For more information about this error, try `rustc --explain E0658`.