mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-25 20:43:21 +00:00
fixed test case
This commit is contained in:
parent
2329b42407
commit
b27b882e72
1 changed files with 1 additions and 1 deletions
|
@ -393,7 +393,7 @@ fn func(e: MyEnum) {
|
|||
merge_match_arms,
|
||||
r#"//- minicore: result
|
||||
fn func() {
|
||||
match Result::<(f64, f64), (f64)>::Ok((0f64, 0f64)) {
|
||||
match Result::<(f64, f64, f64), (f64, f64)>::Ok((0f64, 0f64, 0f64)) {
|
||||
Ok(x) => $0x.1.classify(),
|
||||
Err(x) => x.1.classify()
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue