blob: 41fd701a8ede39e37e3c4e726919f5ec26d426c3 [file] [log] [blame] [view]
The same feature is enabled multiple times with `#![feature]` attributes
Erroneous code example:
```compile_fail,E0636
#![allow(stable_features)]
#![feature(rust1)]
#![feature(rust1)] // error: the feature `rust1` has already been enabled
```