diff options
| author | Brian Anderson <banderson@mozilla.com> | 2015-08-06 16:36:44 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2015-08-06 16:36:44 -0700 |
| commit | e0d7497fb8a25e9b64518574faabe579519bebc9 (patch) | |
| tree | 4cf67799f492defc7afd6d9f6b0fe17da40fe9b4 | |
| parent | 68f79288bf1ac2b014277750cbf59416c91f7d04 (diff) | |
| download | rust-e0d7497fb8a25e9b64518574faabe579519bebc9.tar.gz rust-e0d7497fb8a25e9b64518574faabe579519bebc9.zip | |
Revert "Revert "Fix `missing_docs` lint for const and static.""
This reverts commit 9191a7895574ec3aa5a9b84ce0008d91e32ccd6a.
| -rw-r--r-- | src/librustc_lint/builtin.rs | 2 | ||||
| -rw-r--r-- | src/test/compile-fail/lint-missing-doc.rs | 21 |
2 files changed, 23 insertions, 0 deletions
diff --git a/src/librustc_lint/builtin.rs b/src/librustc_lint/builtin.rs index ffd09326abc..317f67d12db 100644 --- a/src/librustc_lint/builtin.rs +++ b/src/librustc_lint/builtin.rs @@ -1869,6 +1869,8 @@ impl LintPass for MissingDoc { } return }, + ast::ItemConst(..) => "a constant", + ast::ItemStatic(..) => "a static", _ => return }; diff --git a/src/test/compile-fail/lint-missing-doc.rs b/src/test/compile-fail/lint-missing-doc.rs index c98d7083743..4add67f61e0 100644 --- a/src/test/compile-fail/lint-missing-doc.rs +++ b/src/test/compile-fail/lint-missing-doc.rs @@ -150,6 +150,27 @@ pub enum PubBaz3 { #[doc(hidden)] pub fn baz() {} + +const FOO: u32 = 0; +/// dox +pub const FOO1: u32 = 0; +#[allow(missing_docs)] +pub const FOO2: u32 = 0; +#[doc(hidden)] +pub const FOO3: u32 = 0; +pub const FOO4: u32 = 0; //~ ERROR: missing documentation for a const + + +static BAR: u32 = 0; +/// dox +pub static BAR1: u32 = 0; +#[allow(missing_docs)] +pub static BAR2: u32 = 0; +#[doc(hidden)] +pub static BAR3: u32 = 0; +pub static BAR4: u32 = 0; //~ ERROR: missing documentation for a static + + mod internal_impl { /// dox pub fn documented() {} |
