]> git.lizzy.rs Git - rust.git/commitdiff
Fix a typecheck regression with constant borrowed pointers in patterns
authorJakub Bukaj <jakub@jakub.cc>
Sun, 26 Oct 2014 21:35:26 +0000 (22:35 +0100)
committerJakub Bukaj <jakub@jakub.cc>
Sun, 26 Oct 2014 21:35:26 +0000 (22:35 +0100)
Change the eqtype relationship to be a suptype relationship instead.

Fixes #18350.
Fixes #18352.

src/librustc/middle/typeck/check/_match.rs
src/test/run-pass/issue-18352.rs [new file with mode: 0644]

index 14725c581c8a8165328a4d15d92b30014427be35..1dcd8c76f4b84b573d68b8f91404f9b93cd26303 100644 (file)
@@ -74,7 +74,7 @@ pub fn check_pat(pcx: &pat_ctxt, pat: &ast::Pat, expected: ty::t) {
             let const_did = tcx.def_map.borrow().get_copy(&pat.id).def_id();
             let const_pty = ty::lookup_item_type(tcx, const_did);
             fcx.write_ty(pat.id, const_pty.ty);
-            demand::eqtype(fcx, pat.span, expected, const_pty.ty);
+            demand::suptype(fcx, pat.span, expected, const_pty.ty);
         }
         ast::PatIdent(bm, ref path, ref sub) if pat_is_binding(&tcx.def_map, pat) => {
             let typ = fcx.local_ty(pat.span, pat.id);
diff --git a/src/test/run-pass/issue-18352.rs b/src/test/run-pass/issue-18352.rs
new file mode 100644 (file)
index 0000000..7878d69
--- /dev/null
@@ -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.
+
+const X: &'static str = "12345";
+
+fn test(s: String) -> bool {
+    match s.as_slice() {
+        X => true,
+        _ => false
+    }
+}
+
+fn main() {
+    assert!(test("12345".to_string()));
+}