rust/tests/ui/stability-attribute/stability-attribute-issue.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
808 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();
| ^^^^^^^^
|
2020-02-07 06:07:02 -06:00
= note: see issue #1 <https://github.com/rust-lang/rust/issues/1> for more information
= 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();
| ^^^^^^^^^^^^
|
2020-02-07 06:07:02 -06:00
= note: see issue #2 <https://github.com/rust-lang/rust/issues/2> for more information
= 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`.