rust/tests/ui/feature-gates/stable-features.stderr

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

21 lines
607 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error: the feature `test_accepted_feature` has been stable since 1.0.0 and no longer requires an attribute to enable
2018-12-25 09:56:47 -06:00
--> $DIR/stable-features.rs:6:12
2018-08-08 07:28:26 -05:00
|
LL | #![feature(test_accepted_feature)]
| ^^^^^^^^^^^^^^^^^^^^^
|
2020-01-22 17:57:38 -06:00
note: the lint level is defined here
2018-12-25 09:56:47 -06:00
--> $DIR/stable-features.rs:4:9
2018-08-08 07:28:26 -05:00
|
LL | #![deny(stable_features)]
| ^^^^^^^^^^^^^^^
error: the feature `rust1` has been stable since 1.0.0 and no longer requires an attribute to enable
2018-12-25 09:56:47 -06:00
--> $DIR/stable-features.rs:9:12
2018-08-08 07:28:26 -05:00
|
LL | #![feature(rust1)]
| ^^^^^
error: aborting due to 2 previous errors