]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_error_codes/src/error_codes/E0635.md
Rollup merge of #93556 - dtolnay:trailingcomma, r=cjgillot
[rust.git] / compiler / rustc_error_codes / src / 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 ```