Update tests

This commit is contained in:
topecongiro 2017-08-05 15:24:20 +09:00
parent 6b85c4a6e7
commit 6f24c64673
2 changed files with 16 additions and 0 deletions

View File

@ -408,3 +408,11 @@ fn match_with_near_max_width() {
{}
}
}
fn match_with_trailing_spaces() {
match x {
#![allow(simple_match)]
Some(..) => 0,
None => 1,
}
}

View File

@ -450,3 +450,11 @@ fn match_with_near_max_width() {
Variant::Tag6 => {}
}
}
fn match_with_trailing_spaces() {
match x {
#![allow(simple_match)]
Some(..) => 0,
None => 1,
}
}