Skip to content

Commit

Permalink
Add a test for rust-lang#3575
Browse files Browse the repository at this point in the history
  • Loading branch information
topecongiro committed May 21, 2019
1 parent 0ef2144 commit 2445f0e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/source/normalize_multiline_doc_attribute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,8 @@
is split
on multiple lines"]
fn foo() {}

#[doc = " B1"]
#[doc = ""]
#[doc = " A1"]
fn bar() {}
5 changes: 5 additions & 0 deletions tests/target/normalize_multiline_doc_attribute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,8 @@
///is split
///on multiple lines
fn foo() {}

/// B1
///
/// A1
fn bar() {}

0 comments on commit 2445f0e

Please sign in to comment.