Sign in
rust
/
rust
/
526a91cbcc4601b92b0587405015e07b9c0d79f6
/
.
/
compiler
/
rustc_error_codes
/
src
/
error_codes
/
E0557.md
blob: f330efe59336a3acac07ceb1a6b7d63417983313 [
file
] [
log
] [
blame
] [
view
]
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
.