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