1 // Ensure that empty doc comments don't panic. 2 3 /*! 4 */ 5 6 /// 7 /// 8 pub struct Foo; 9 10 #[doc = " 11 "] 12 pub mod Mod { 13 //! 14 //! 15 } 16 17 /** 18 */ 19 pub mod Another { 20 #![doc = " 21 "] 22 } 23