rust/tests/rustdoc-html/empty-doc-comment.rs
2026-01-07 14:23:30 +01:00

22 lines
169 B
Rust

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