Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Error code E0635

The #![feature] attribute specified an unknown feature.

Erroneous code example:

#![allow(unused)] #![feature(nonexistent_rust_feature)] // error: unknown feature fn main() { }