a956a20532
This reverts commit 97d7216cd4
.
19 lines
235 B
Rust
19 lines
235 B
Rust
// rustfmt-format_code_in_doc_comments: true
|
|
|
|
/// ```rust
|
|
/// if (true) { … }
|
|
/// ```
|
|
fn a() {}
|
|
|
|
/// ```rust
|
|
/// if foo() {
|
|
/// …
|
|
/// }
|
|
/// ```
|
|
fn a() {}
|
|
|
|
/// ```rust
|
|
/// k1 == k2 ⇒ hash(k1) == hash(k2)
|
|
/// ```
|
|
pub struct a;
|