]> git.lizzy.rs Git - rust.git/blob - src/test/ui/stability-attribute/stable-in-unstable.stderr
Auto merge of #103894 - mati865:gnullvm-libunwind-changes, r=thomcc
[rust.git] / src / test / ui / stability-attribute / stable-in-unstable.stderr
1 error[E0658]: use of unstable library feature 'unstable_test_feature'
2   --> $DIR/stable-in-unstable.rs:16:9
3    |
4 LL |     use stable_in_unstable_core::new_unstable_module;
5    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: see issue #1 <https://github.com/rust-lang/rust/issues/1> for more information
8    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
9
10 error[E0658]: use of unstable library feature 'unstable_test_feature'
11   --> $DIR/stable-in-unstable.rs:17:9
12    |
13 LL |     use stable_in_unstable_core::new_unstable_module::OldTrait;
14    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
15    |
16    = note: see issue #1 <https://github.com/rust-lang/rust/issues/1> for more information
17    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
18
19 error[E0658]: use of unstable library feature 'unstable_test_feature'
20   --> $DIR/stable-in-unstable.rs:29:9
21    |
22 LL |     use stable_in_unstable_core::new_unstable_module::OldTrait;
23    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
24    |
25    = note: see issue #1 <https://github.com/rust-lang/rust/issues/1> for more information
26    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
27
28 error[E0658]: use of unstable library feature 'unstable_test_feature'
29   --> $DIR/stable-in-unstable.rs:39:10
30    |
31 LL |     impl stable_in_unstable_core::new_unstable_module::OldTrait for LocalType {}
32    |          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
33    |
34    = note: see issue #1 <https://github.com/rust-lang/rust/issues/1> for more information
35    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
36
37 error[E0658]: use of unstable library feature 'unstable_test_feature'
38   --> $DIR/stable-in-unstable.rs:49:56
39    |
40 LL |     use stable_in_unstable_core::new_unstable_module::{OldTrait};
41    |                                                        ^^^^^^^^
42    |
43    = note: see issue #1 <https://github.com/rust-lang/rust/issues/1> for more information
44    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
45
46 error[E0658]: use of unstable library feature 'unstable_test_feature'
47   --> $DIR/stable-in-unstable.rs:53:9
48    |
49 LL |     use stable_in_unstable_core::new_unstable_module::*;
50    |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
51    |
52    = note: see issue #1 <https://github.com/rust-lang/rust/issues/1> for more information
53    = help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
54
55 error: aborting due to 6 previous errors
56
57 For more information about this error, try `rustc --explain E0658`.