mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
16 lines
236 B
Rust
16 lines
236 B
Rust
#![allow(rustdoc::invalid_rust_codeblocks)]
|
|
|
|
// @has issue_42760/struct.NonGen.html
|
|
// @has - '//h2' 'Example'
|
|
|
|
/// Item docs.
|
|
///
|
|
#[doc="Hello there!"]
|
|
///
|
|
/// # Example
|
|
///
|
|
/// ```rust
|
|
/// // some code here
|
|
/// ```
|
|
pub struct NonGen;
|