Skip to content

Commit

Permalink
add test for handling double semicolon (rust-lang#3706)
Browse files Browse the repository at this point in the history
  • Loading branch information
rchaser53 authored and topecongiro committed Jul 28, 2019
1 parent 983a92c commit da2ed09
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/source/issue-3672.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
fn main() {
let x = 5;;

}
3 changes: 3 additions & 0 deletions tests/target/issue-3672.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
let x = 5;
}

0 comments on commit da2ed09

Please sign in to comment.