rust/src/test/rustdoc/issue-42760.rs
2018-12-25 21:08:33 -07:00

13 lines
191 B
Rust

// @has issue_42760/struct.NonGen.html
// @has - '//h1' 'Example'
/// Item docs.
///
#[doc="Hello there!"]
///
/// # Example
///
/// ```rust
/// // some code here
/// ```
pub struct NonGen;