]> git.lizzy.rs Git - rust.git/blob - src/librustc_error_codes/error_codes/E0635.md
Rollup merge of #62514 - stephaneyfx:box-ffi, r=nikomatsakis
[rust.git] / src / librustc_error_codes / error_codes / E0635.md
1 The `#![feature]` attribute specified an unknown feature.
2
3 Erroneous code example:
4
5 ```compile_fail,E0635
6 #![feature(nonexistent_rust_feature)] // error: unknown feature
7 ```