fp-macros 0.8.0

Procedural macros for generating and working with Higher-Kinded Type (HKT) traits in the fp-library crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Test: Duplicate #[document_examples] on a function

use fp_macros::document_examples;

#[document_examples]
#[document_examples]
///
/// ```
/// assert!(true);
/// ```
fn foo() {}

fn main() {}