]> git.lizzy.rs Git - rust.git/commitdiff
liveness: substitute bound regions with free ones before normalizing the return type
authorJonas Schievink <jonas@schievink.net>
Fri, 18 Mar 2016 10:34:51 +0000 (11:34 +0100)
committerJonas Schievink <jonas@schievink.net>
Fri, 18 Mar 2016 10:44:16 +0000 (11:44 +0100)
Fixes #32323

src/librustc/middle/liveness.rs
src/test/compile-fail/issue-32323.rs [new file with mode: 0644]

index 0bfb830efc1e77b4c17112118cb38ccdbe5701ea..73db978cffe2ca0f078a856692fcf7379c5f0642 100644 (file)
 use middle::ty::{self, TyCtxt, ParameterEnvironment};
 use middle::traits::{self, ProjectionMode};
 use middle::infer;
+use middle::subst::Subst;
 use lint;
 use util::nodemap::NodeMap;
 
@@ -1495,6 +1496,7 @@ fn check_ret(&self,
                     if self.live_on_entry(entry_ln, self.s.no_ret_var).is_some() => {
 
                 let param_env = ParameterEnvironment::for_item(&self.ir.tcx, id);
+                let t_ret_subst = t_ret.subst(&self.ir.tcx, &param_env.free_substs);
                 let infcx = infer::new_infer_ctxt(&self.ir.tcx,
                                                   &self.ir.tcx.tables,
                                                   Some(param_env),
@@ -1502,7 +1504,7 @@ fn check_ret(&self,
                 let cause = traits::ObligationCause::dummy();
                 let norm = traits::fully_normalize(&infcx,
                                                    cause,
-                                                   &t_ret);
+                                                   &t_ret_subst);
 
                 if norm.unwrap().is_nil() {
                     // for nil return types, it is ok to not return a value expl.
diff --git a/src/test/compile-fail/issue-32323.rs b/src/test/compile-fail/issue-32323.rs
new file mode 100644 (file)
index 0000000..e3461e5
--- /dev/null
@@ -0,0 +1,18 @@
+// Copyright 2016 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.
+
+pub trait Tr<'a> {
+    type Out;
+}
+
+pub fn f<'a, T: Tr<'a>>() -> <T as Tr<'a>>::Out {}
+//~^ ERROR not all control paths return a value
+
+pub fn main() {}