summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/configs/normalize_doc_attributes/false.rs
blob: f8eb64273c3d664fda0461d8a8f2448d34dc6a83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// rustfmt-normalize_doc_attributes: false
// Normalize doc attributes

#![doc = " Example documentation"]

#[doc = " Example item documentation"]
pub enum Foo {}

#[doc = "        Lots of space"]
pub enum Bar {}

#[doc = "no leading space"]
pub mod FooBar {}