summaryrefslogtreecommitdiffstats
path: root/src/test/pretty/match-block-expr.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/pretty/match-block-expr.rs')
-rw-r--r--src/test/pretty/match-block-expr.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/test/pretty/match-block-expr.rs b/src/test/pretty/match-block-expr.rs
new file mode 100644
index 000000000..10903e928
--- /dev/null
+++ b/src/test/pretty/match-block-expr.rs
@@ -0,0 +1,6 @@
+// pp-exact
+
+fn main() {
+ let x = match { 5 } { 1 => 5, 2 => 6, _ => 7, };
+ assert_eq!(x, 7);
+}