rust/src/test/rustdoc/issue-23812.rs

37 lines
667 B
Rust

macro_rules! doc {
(#[$outer:meta] mod $i:ident { #![$inner:meta] }) =>
(
#[$outer]
pub mod $i {
#![$inner]
}
)
}
doc! {
/// Outer comment
mod Foo {
//! Inner comment
}
}
// @has issue_23812/Foo/index.html
// @has - 'Outer comment'
// @!has - '/// Outer comment'
// @has - 'Inner comment'
// @!has - '//! Inner comment'
doc! {
/** Outer block comment */
mod Bar {
/*! Inner block comment */
}
}
// @has issue_23812/Bar/index.html
// @has - 'Outer block comment'
// @!has - '/** Outer block comment */'
// @has - 'Inner block comment'
// @!has - '/*! Inner block comment */'