blob: b07dc3f6e967b8064d6071804db19a722ac2b7cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// @has issue_42760/struct.NonGen.html
// @has - '//h1' 'Example'
/// Item docs.
///
#[doc="Hello there!"]
///
/// # Example
///
/// ```rust
/// // some code here
/// ```
pub struct NonGen;
|