fixed test case

This commit is contained in:
Jeroen Vannevel 2022-01-10 23:10:09 +00:00
parent 2329b42407
commit b27b882e72
No known key found for this signature in database
GPG key ID: 78EF5F52F38C49BD

View file

@ -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()
};