rust/src/test/ui/stability-attribute/stability-attribute-issue.stderr

22 lines
788 B
Plaintext
Raw Normal View History

2019-04-10 18:40:12 -05:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
2019-04-22 11:35:37 -05:00
--> $DIR/stability-attribute-issue.rs:8:5
2018-08-08 07:28:26 -05:00
|
LL | unstable();
| ^^^^^^^^
|
2019-04-11 13:42:06 -05:00
= note: for more information, see https://github.com/rust-lang/rust/issues/1
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 07:28:26 -05:00
2019-04-10 18:40:12 -05:00
error[E0658]: use of unstable library feature 'unstable_test_feature': message
2019-04-22 11:35:37 -05:00
--> $DIR/stability-attribute-issue.rs:10:5
2018-08-08 07:28:26 -05:00
|
LL | unstable_msg();
| ^^^^^^^^^^^^
|
2019-04-11 13:42:06 -05:00
= note: for more information, see https://github.com/rust-lang/rust/issues/2
= help: add `#![feature(unstable_test_feature)]` to the crate attributes to enable
2018-08-08 07:28:26 -05:00
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0658`.