]> git.lizzy.rs Git - rust.git/blobdiff - src/test/pretty/match-block-expr.rs
Rollup merge of #100567 - Rageking8:fix-100563, r=wesleywiser
[rust.git] / src / test / pretty / match-block-expr.rs
index 0db6574b0737f318124e7f818bf63157040e2553..10903e928cda8ebcee344186630a00bca9516219 100644 (file)
@@ -2,5 +2,5 @@
 
 fn main() {
     let x = match { 5 } { 1 => 5, 2 => 6, _ => 7, };
-    assert_eq!(x , 7);
+    assert_eq!(x, 7);
 }