rust/tests/source/doc-comment-with-example.rs

13 lines
234 B
Rust
Raw Normal View History

// rustfmt-format_doc_comments: true
2018-05-23 16:29:18 +02:00
/// Foo
///
/// # Example
/// ```
/// # #![cfg_attr(not(dox), feature(cfg_target_feature, target_feature, stdsimd))]
/// # #![cfg_attr(not(dox), no_std)]
/// fn foo() { }
/// ```
///
fn foo() {}