Update tests

This commit is contained in:
topecongiro 2017-06-20 21:36:28 +09:00
parent fb1225a8af
commit b5a13602d9
2 changed files with 18 additions and 0 deletions

View File

@ -299,3 +299,12 @@ fn issue1106() {
.filter_entry(|entry| exclusions.filter_entry(entry)) {
}
}
fn issue1570() {
a_very_long_function_name({some_func(1, {1})})
}
fn issue1714() {
v = &mut {v}[mid..];
let (left, right) = {v}.split_at_mut(mid);
}

View File

@ -358,3 +358,12 @@ fn issue1106() {
.filter_entry(|entry| exclusions.filter_entry(entry))
{}
}
fn issue1570() {
a_very_long_function_name({ some_func(1, { 1 }) })
}
fn issue1714() {
v = &mut { v }[mid..];
let (left, right) = { v }.split_at_mut(mid);
}