]> git.lizzy.rs Git - rust.git/blob - src/librustc_error_codes/error_codes/E0557.md
Rollup merge of #62514 - stephaneyfx:box-ffi, r=nikomatsakis
[rust.git] / src / librustc_error_codes / error_codes / E0557.md
1 A feature attribute named a feature that has been removed.
2
3 Erroneous code example:
4
5 ```compile_fail,E0557
6 #![feature(managed_boxes)] // error: feature has been removed
7 ```
8
9 Delete the offending feature attribute.