mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
16 lines
413 B
Plaintext
16 lines
413 B
Plaintext
error[E0636]: the feature `if_let` has already been declared
|
|
--> $DIR/duplicate-features.rs:7:12
|
|
|
|
|
LL | #![feature(if_let)]
|
|
| ^^^^^^
|
|
|
|
error[E0636]: the feature `rust1` has already been declared
|
|
--> $DIR/duplicate-features.rs:4:12
|
|
|
|
|
LL | #![feature(rust1)]
|
|
| ^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0636`.
|