2024-10-08 14:06:56 +02:00
|
|
|
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
|
|
|
| ^^^^^^
|
|
|
|
|
2024-10-08 14:06:56 +02: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
|
|
|
|
|
2018-07-23 17:34:04 +01:00
|
|
|
For more information about this error, try `rustc --explain E0636`.
|