]> git.lizzy.rs Git - rust.git/blob - src/librustc_error_codes/error_codes/E0635.md
Rollup merge of #72674 - Mark-Simulacrum:clippy-always-test-pass, r=oli-obk
[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 ```