Error code E0557
A feature attribute named a feature that has been removed.
Erroneous code example:
#![allow(unused)]
#![feature(managed_boxes)] // error: feature has been removed
fn main() {
}
Delete the offending feature attribute.
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
A feature attribute named a feature that has been removed.
Erroneous code example:
#![allow(unused)]
#![feature(managed_boxes)] // error: feature has been removed
fn main() {
}
Delete the offending feature attribute.