W3cubDocs

/Rust

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.

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/error_codes/E0557.html