blob: d55297bdd0e7be2fcba4e1fc442ef79248c90fc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
error[E0636]: the feature `if_let` has already been declared
--> $DIR/duplicate-features.rs:17:12
|
LL | #![feature(if_let)] //~ ERROR the feature `if_let` has already been declared
| ^^^^^^
error[E0636]: the feature `rust1` has already been declared
--> $DIR/duplicate-features.rs:14:12
|
LL | #![feature(rust1)] //~ ERROR the feature `rust1` has already been declared
| ^^^^^
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0636`.
|