mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-30 06:43:20 +03:00
13 lines
187 B
Rust
13 lines
187 B
Rust
// rustfmt-unstable: true
|
|
// rustfmt-normalize_doc_attributes: true
|
|
|
|
#[doc = "This comment
|
|
is split
|
|
on multiple lines"]
|
|
fn foo() {}
|
|
|
|
#[doc = " B1"]
|
|
#[doc = ""]
|
|
#[doc = " A1"]
|
|
fn bar() {}
|