summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/match-needing-semi.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/match-needing-semi.rs')
-rw-r--r--src/test/ui/suggestions/match-needing-semi.rs21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/test/ui/suggestions/match-needing-semi.rs b/src/test/ui/suggestions/match-needing-semi.rs
new file mode 100644
index 000000000..833555d0e
--- /dev/null
+++ b/src/test/ui/suggestions/match-needing-semi.rs
@@ -0,0 +1,21 @@
+// check-only
+
+fn main() {
+ match 3 {
+ 4 => 1,
+ 3 => {
+ foo() //~ ERROR mismatched types
+ }
+ _ => 2
+ }
+ match 3 { //~ ERROR mismatched types
+ 4 => 1,
+ 3 => 2,
+ _ => 2
+ }
+ let _ = ();
+}
+
+fn foo() -> i32 {
+ 42
+}