``` rust #![deny(missing_docs)] //! crate docs pub type Foo = String; fn main() { } ``` Compiles without errors even though `Foo` is undocumented.