rust/src/librustc_error_codes/error_codes/E0557.md

214 B

A feature attribute named a feature that has been removed.

Erroneous code example:

#![feature(managed_boxes)] // error: feature has been removed

Delete the offending feature attribute.