Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

missing_doc lint misses type aliases #19543

Closed
tomjakubowski opened this issue Dec 5, 2014 · 0 comments · Fixed by #19553
Closed

missing_doc lint misses type aliases #19543

tomjakubowski opened this issue Dec 5, 2014 · 0 comments · Fixed by #19553
Labels
A-lints Area: Lints (warnings about flaws in source code) such as unused_mut.

Comments

@tomjakubowski
Copy link
Contributor

#![deny(missing_docs)]

//! crate docs

pub type Foo = String;

fn main() {
}

Compiles without errors even though Foo is undocumented.

@huonw huonw added the A-lints Area: Lints (warnings about flaws in source code) such as unused_mut. label Dec 5, 2014
sfackler added a commit to sfackler/rust that referenced this issue Dec 5, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-lints Area: Lints (warnings about flaws in source code) such as unused_mut.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants