os-rust/tests/ui/feature-gates/duplicate-features.stderr

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

16 lines
411 B
Text
Raw Normal View History

error[E0636]: the feature `if_let` has already been enabled
2018-12-25 08:56:47 -07:00
--> $DIR/duplicate-features.rs:7:12
2018-07-23 13:08:18 +01:00
|
2019-03-09 15:03:44 +03:00
LL | #![feature(if_let)]
2018-07-23 13:08:18 +01:00
| ^^^^^^
error[E0636]: the feature `rust1` has already been enabled
2018-12-25 08:56:47 -07:00
--> $DIR/duplicate-features.rs:4:12
2018-07-23 13:08:18 +01:00
|
2019-03-09 15:03:44 +03:00
LL | #![feature(rust1)]
2018-07-23 13:08:18 +01:00
| ^^^^^
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0636`.