rust/tests/target/configs/normalize_doc_attributes/false.rs

14 lines
260 B
Rust

// 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 {}