Skip to content

Instantly share code, notes, and snippets.

@peanutbother
peanutbother / main.rs
Last active March 31, 2023 20:29
Rustdoc proc_macro_attribute which adds boilerplate for a doctest
/// This struct shows an example
///
/// # Example
#[doc_add_boilerplate(
/// # // you can use hidden lines
/// MyStruct::greet(); // this line is visible
)]
struct MyStruct;