2021-11-26 17:03:16 -06:00
|
|
|
#![allow(rustdoc::invalid_rust_codeblocks)]
|
|
|
|
|
2017-09-21 22:37:00 -05:00
|
|
|
// @has issue_42760/struct.NonGen.html
|
2021-10-01 05:17:15 -05:00
|
|
|
// @has - '//h2' 'Example'
|
2017-09-21 22:37:00 -05:00
|
|
|
|
|
|
|
/// Item docs.
|
|
|
|
///
|
|
|
|
#[doc="Hello there!"]
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// // some code here
|
|
|
|
/// ```
|
|
|
|
pub struct NonGen;
|