blob: 7c134d3972ba7a928b788033fd98ce54810881b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// rustfmt-normalize_comments: true
// rustfmt-format_code_in_doc_comments: true
//! ```rust
//! println!("hello, world");
//! ```
#![deny(missing_docs)]
//! ```rust
//! println!("hello, world");
#![deny(missing_docs)]
|