1
Fork 0
rust/src/test/ui/feature-gate/allow-features-empty.stderr

22 lines
716 B
Text
Raw Normal View History

2019-03-13 16:29:24 -07:00
error[E0725]: the feature `rustc_const_unstable` is not in the list of allowed features
2019-09-03 22:10:12 -04:00
--> $DIR/allow-features-empty.rs:4:12
2019-03-13 16:29:24 -07:00
|
LL | #![feature(rustc_const_unstable)]
| ^^^^^^^^^^^^^^^^^^^^
error[E0725]: the feature `lang_items` is not in the list of allowed features
2019-09-03 22:10:12 -04:00
--> $DIR/allow-features-empty.rs:6:12
2019-03-13 16:29:24 -07:00
|
LL | #![feature(lang_items)]
| ^^^^^^^^^^
error[E0725]: the feature `unknown_stdlib_feature` is not in the list of allowed features
2019-09-03 22:10:12 -04:00
--> $DIR/allow-features-empty.rs:8:12
|
LL | #![feature(unknown_stdlib_feature)]
| ^^^^^^^^^^^^^^^^^^^^^^
2019-09-03 22:10:12 -04:00
error: aborting due to 3 previous errors
2019-03-13 16:29:24 -07:00
For more information about this error, try `rustc --explain E0725`.