2023-04-20 14:37:15 +00:00
|
|
|
//@needs-asm-support
|
2023-04-20 15:19:36 +00:00
|
|
|
//@aux-build: proc_macros.rs:proc-macro
|
2022-08-11 17:42:16 +00:00
|
|
|
|
2018-07-28 15:34:52 +00:00
|
|
|
#![warn(clippy::missing_docs_in_private_items)]
|
2016-08-23 16:09:37 +00:00
|
|
|
// When denying at the crate level, be sure to not get random warnings from the
|
|
|
|
// injected intrinsics by the compiler.
|
|
|
|
#![allow(dead_code)]
|
|
|
|
//! Some garbage docs for the crate here
|
2018-12-09 22:26:16 +00:00
|
|
|
#![doc = "More garbage"]
|
2016-08-23 16:09:37 +00:00
|
|
|
|
2023-03-07 14:40:55 +00:00
|
|
|
extern crate proc_macros;
|
2022-08-11 17:42:16 +00:00
|
|
|
|
2023-03-07 14:40:55 +00:00
|
|
|
use proc_macros::with_span;
|
2021-12-13 00:00:51 +00:00
|
|
|
use std::arch::global_asm;
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
type Typedef = String;
|
|
|
|
pub type PubTypedef = String;
|
2016-08-23 16:09:37 +00:00
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
mod module_no_dox {}
|
|
|
|
pub mod pub_module_no_dox {}
|
2016-08-23 16:09:37 +00:00
|
|
|
|
|
|
|
/// dox
|
|
|
|
pub fn foo() {}
|
2017-02-08 13:58:07 +00:00
|
|
|
pub fn foo2() {}
|
|
|
|
fn foo3() {}
|
2018-12-09 22:26:16 +00:00
|
|
|
#[allow(clippy::missing_docs_in_private_items)]
|
|
|
|
pub fn foo4() {}
|
2016-08-23 16:09:37 +00:00
|
|
|
|
|
|
|
// It sure is nice if doc(hidden) implies allow(missing_docs), and that it
|
|
|
|
// applies recursively
|
|
|
|
#[doc(hidden)]
|
|
|
|
mod a {
|
|
|
|
pub fn baz() {}
|
|
|
|
pub mod b {
|
|
|
|
pub fn baz() {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
enum Baz {
|
2018-12-09 22:26:16 +00:00
|
|
|
BazA { a: isize, b: isize },
|
|
|
|
BarB,
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
pub enum PubBaz {
|
2018-12-09 22:26:16 +00:00
|
|
|
PubBazA { a: isize },
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// dox
|
|
|
|
pub enum PubBaz2 {
|
|
|
|
/// dox
|
|
|
|
PubBaz2A {
|
|
|
|
/// dox
|
|
|
|
a: isize,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-07-28 15:34:52 +00:00
|
|
|
#[allow(clippy::missing_docs_in_private_items)]
|
2016-08-23 16:09:37 +00:00
|
|
|
pub enum PubBaz3 {
|
2018-12-09 22:26:16 +00:00
|
|
|
PubBaz3A { b: isize },
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub fn baz() {}
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
const FOO: u32 = 0;
|
2016-08-23 16:09:37 +00:00
|
|
|
/// dox
|
|
|
|
pub const FOO1: u32 = 0;
|
2018-07-28 15:34:52 +00:00
|
|
|
#[allow(clippy::missing_docs_in_private_items)]
|
2016-08-23 16:09:37 +00:00
|
|
|
pub const FOO2: u32 = 0;
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub const FOO3: u32 = 0;
|
2017-02-08 13:58:07 +00:00
|
|
|
pub const FOO4: u32 = 0;
|
2016-08-23 16:09:37 +00:00
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
static BAR: u32 = 0;
|
2016-08-23 16:09:37 +00:00
|
|
|
/// dox
|
|
|
|
pub static BAR1: u32 = 0;
|
2018-07-28 15:34:52 +00:00
|
|
|
#[allow(clippy::missing_docs_in_private_items)]
|
2016-08-23 16:09:37 +00:00
|
|
|
pub static BAR2: u32 = 0;
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub static BAR3: u32 = 0;
|
2017-02-08 13:58:07 +00:00
|
|
|
pub static BAR4: u32 = 0;
|
2016-08-23 16:09:37 +00:00
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
mod internal_impl {
|
2016-08-23 16:09:37 +00:00
|
|
|
/// dox
|
|
|
|
pub fn documented() {}
|
2017-02-08 13:58:07 +00:00
|
|
|
pub fn undocumented1() {}
|
|
|
|
pub fn undocumented2() {}
|
|
|
|
fn undocumented3() {}
|
2016-08-23 16:09:37 +00:00
|
|
|
/// dox
|
|
|
|
pub mod globbed {
|
|
|
|
/// dox
|
|
|
|
pub fn also_documented() {}
|
2017-02-08 13:58:07 +00:00
|
|
|
pub fn also_undocumented1() {}
|
|
|
|
fn also_undocumented2() {}
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/// dox
|
|
|
|
pub mod public_interface {
|
2021-11-04 12:52:36 +00:00
|
|
|
pub use crate::internal_impl::documented as foo;
|
|
|
|
pub use crate::internal_impl::globbed::*;
|
|
|
|
pub use crate::internal_impl::undocumented1 as bar;
|
|
|
|
pub use crate::internal_impl::{documented, undocumented2};
|
2016-08-23 16:09:37 +00:00
|
|
|
}
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
fn main() {}
|
2019-01-13 16:09:58 +00:00
|
|
|
|
|
|
|
// Ensure global asm doesn't require documentation.
|
|
|
|
global_asm! { "" }
|
2022-08-11 17:42:16 +00:00
|
|
|
|
|
|
|
// Don't lint proc macro output with an unexpected span.
|
|
|
|
with_span!(span pub struct FooPm { pub field: u32});
|
|
|
|
with_span!(span pub struct FooPm2;);
|
|
|
|
with_span!(span pub enum FooPm3 { A, B(u32), C { field: u32 }});
|
|
|
|
with_span!(span pub fn foo_pm() {});
|
|
|
|
with_span!(span pub static FOO_PM: u32 = 0;);
|
|
|
|
with_span!(span pub const FOO2_PM: u32 = 0;);
|