14 lines
191 B
Rust
14 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;
|