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