mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-22 12:43:36 +00:00
Update tests
This commit is contained in:
parent
fb1225a8af
commit
b5a13602d9
@ -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);
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user