summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_error_codes/src/error_codes/E0557.md
blob: f330efe59336a3acac07ceb1a6b7d63417983313 (plain)
1
2
3
4
5
6
7
8
9
A feature attribute named a feature that has been removed.

Erroneous code example:

```compile_fail,E0557
#![feature(managed_boxes)] // error: feature has been removed
```

Delete the offending feature attribute.