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