blob: 7543553e60d560fbf96bcf4c1446c255c5bb565d [file] [edit]
// Ensure that empty doc comments don't panic.
//@ check-pass
/*!
*/
///
///
pub struct Foo;
#[doc = "
"]
pub mod Mod {
//!
//!
}
/**
*/
pub mod Another {
#![doc = "
"]
}