blob: 18e5af6f87e11edfe87f7c90207049525e319605 [file] [view]
#### Note: this error code is no longer emitted by the compiler.
The same feature is enabled multiple times with `#![feature]` attributes
Erroneous code example:
```compile_fail
#![allow(stable_features)]
#![feature(rust1)]
#![feature(rust1)] // error: the feature `rust1` has already been enabled
```