1
Fork 0
rust/src/test/ui/stability-attribute/stability-attribute-issue.stderr

22 lines
788 B
Text
Raw Normal View History

2019-04-10 16:40:12 -07:00
error[E0658]: use of unstable library feature 'unstable_test_feature'
2019-04-22 17:35:37 +01:00
--> $DIR/stability-attribute-issue.rs:8:5
2018-08-08 14:28:26 +02:00
|
LL | unstable();
| ^^^^^^^^
|
2019-04-11 11:42:06 -07: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 14:28:26 +02:00
2019-04-10 16:40:12 -07:00
error[E0658]: use of unstable library feature 'unstable_test_feature': message
2019-04-22 17:35:37 +01:00
--> $DIR/stability-attribute-issue.rs:10:5
2018-08-08 14:28:26 +02:00
|
LL | unstable_msg();
| ^^^^^^^^^^^^
|
2019-04-11 11:42:06 -07: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 14:28:26 +02:00
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0658`.