about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-02-27 06:06:44 -0800
committerbors <bors@rust-lang.org>2013-02-27 06:06:44 -0800
commit061a2237230d3abcdb30ecb8987e5de17e67a58e (patch)
tree0b2dd6e5540bc8759654681a99c438d18969d223
parent8e492ccaa709172d74aac2d4f086af6886aa4c64 (diff)
parentb79c4dc262227f0d09706a13f76fdb347ca6d70d (diff)
downloadrust-061a2237230d3abcdb30ecb8987e5de17e67a58e.tar.gz
rust-061a2237230d3abcdb30ecb8987e5de17e67a58e.zip
auto merge of #5118 : youknowone/rust/match-guard, r=nikomatsakis
Fix ICE while there is no remained arms after checking guards.

This fix #3601 also.
-rw-r--r--src/librustc/middle/check_match.rs6
-rw-r--r--src/test/compile-fail/match-non-exhaustive.rs14
2 files changed, 19 insertions, 1 deletions
diff --git a/src/librustc/middle/check_match.rs b/src/librustc/middle/check_match.rs
index 85ed4e74efb..fbe28d7ac9b 100644
--- a/src/librustc/middle/check_match.rs
+++ b/src/librustc/middle/check_match.rs
@@ -101,7 +101,11 @@ pub fn check_expr(cx: @MatchCheckCtxt, ex: @expr, &&s: (), v: visit::vt<()>) {
           _ => { /* We assume only enum types can be uninhabited */ }
        }
        let arms = vec::concat(arms.filter_mapped(unguarded_pat));
-       check_exhaustive(cx, ex.span, arms);
+       if arms.is_empty() {
+           cx.tcx.sess.span_err(ex.span, ~"non-exhaustive patterns");
+       } else {
+           check_exhaustive(cx, ex.span, arms);
+       }
      }
      _ => ()
     }
diff --git a/src/test/compile-fail/match-non-exhaustive.rs b/src/test/compile-fail/match-non-exhaustive.rs
new file mode 100644
index 00000000000..a24d2ed4b7f
--- /dev/null
+++ b/src/test/compile-fail/match-non-exhaustive.rs
@@ -0,0 +1,14 @@
+// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+fn main() {
+    match 0 { 1 => () } //~ ERROR non-exhaustive patterns
+    match 0 { 0 if false => () } //~ ERROR non-exhaustive patterns
+}