blob: 16c1705eb00cf97eeb523cdc37d0d5c9d96d9b54 [file] [log] [blame]
// https://github.com/rust-lang/rust/issues/42760
#![crate_name="foo"]
#![allow(rustdoc::invalid_rust_codeblocks)]
// @has foo/struct.NonGen.html
// @has - '//h2' 'Example'
/// Item docs.
///
#[doc="Hello there!"]
///
/// # Example
///
/// ```rust
/// // some code here
/// ```
pub struct NonGen;