about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorEdward Wang <edward.yu.wang@gmail.com>2014-04-12 16:16:37 +0800
committerEdward Wang <edward.yu.wang@gmail.com>2014-04-12 21:14:24 +0800
commitfc043c054f39d5bae176eb93067f13a3be243d8e (patch)
tree2101f0dd447aa11d2967728b47ed60ce8722984d /src/test
parentecc774f788ca3880ce76e4b87ac0d21a3a16d3ae (diff)
downloadrust-fc043c054f39d5bae176eb93067f13a3be243d8e.tar.gz
rust-fc043c054f39d5bae176eb93067f13a3be243d8e.zip
Check bounds when looking up type parameters
A mismatched type with more type parameters than the expected one causes
`typeck` looking up out of the bound of type parameter vector, which
leads to ICE.

Closes #13466
Diffstat (limited to 'src/test')
-rw-r--r--src/test/compile-fail/issue-13466.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/test/compile-fail/issue-13466.rs b/src/test/compile-fail/issue-13466.rs
new file mode 100644
index 00000000000..e4621495f47
--- /dev/null
+++ b/src/test/compile-fail/issue-13466.rs
@@ -0,0 +1,22 @@
+// Copyright 2014 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.
+
+// Regression test for #13466
+
+pub fn main() {
+    // The expected arm type `Option<T>` has one type parameter, while
+    // the actual arm `Result<T, E>` has two. typeck should not be
+    // tricked into looking up a non-existing second type parameter.
+    let _x: uint = match Some(1u) {
+    //~^ ERROR mismatched types: expected `uint` but found `<generic #0>`
+        Ok(u) => u, //~ ERROR  mismatched types: expected `std::option::Option<uint>`
+        Err(e) => fail!(e)  //~ ERROR mismatched types: expected `std::option::Option<uint>`
+    };
+}