rust/tests/source/doc-comment-with-example.rs
2018-10-11 23:34:36 +09:00

12 lines
234 B
Rust

// rustfmt-format_doc_comments: true
/// Foo
///
/// # Example
/// ```
/// # #![cfg_attr(not(dox), feature(cfg_target_feature, target_feature, stdsimd))]
/// # #![cfg_attr(not(dox), no_std)]
/// fn foo() { }
/// ```
///
fn foo() {}