rust/tests/rustdoc/empty-doc-comment.rs
2023-01-11 09:32:08 +00:00

23 lines
169 B
Rust

// Ensure that empty doc comments don't panic.
/*!
*/
///
///
pub struct Foo;
#[doc = "
"]
pub mod Mod {
//!
//!
}
/**
*/
pub mod Another {
#![doc = "
"]
}