]> git.lizzy.rs Git - rust.git/commitdiff
resolve type variables in the custom type op pathway
authorNiko Matsakis <niko@alum.mit.edu>
Tue, 21 Aug 2018 23:23:30 +0000 (19:23 -0400)
committerNiko Matsakis <niko@alum.mit.edu>
Thu, 23 Aug 2018 11:38:47 +0000 (07:38 -0400)
src/librustc/traits/query/type_op/custom.rs
src/test/ui/issue-53568.rs [new file with mode: 0644]

index 5cf7064b0c297e0501c01f4d24f7d3ef475cd692..6a5ef75a660ba454027c9b9c8749039e6cd7d944 100644 (file)
@@ -106,7 +106,8 @@ fn scrape_region_constraints<'gcx, 'tcx, R>(
         infcx.tcx,
         region_obligations
             .iter()
-            .map(|(_, r_o)| (r_o.sup_type, r_o.sub_region)),
+            .map(|(_, r_o)| (r_o.sup_type, r_o.sub_region))
+            .map(|(ty, r)| (infcx.resolve_type_vars_if_possible(&ty), r)),
         &region_constraint_data,
     );
 
diff --git a/src/test/ui/issue-53568.rs b/src/test/ui/issue-53568.rs
new file mode 100644 (file)
index 0000000..6b479f7
--- /dev/null
@@ -0,0 +1,61 @@
+// Copyright 2018 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 an NLL-related ICE (#53568) -- we failed to
+// resolve inference variables in "custom type-ops".
+//
+// compile-pass
+
+#![feature(nll)]
+#![allow(dead_code)]
+
+trait Future {
+    type Item;
+}
+
+impl<F, T> Future for F
+where F: Fn() -> T
+{
+    type Item = T;
+}
+
+trait Connect {}
+
+struct Connector<H> {
+    handler: H,
+}
+
+impl<H, T> Connect for Connector<H>
+where
+    T: 'static,
+    H: Future<Item = T>
+{
+}
+
+struct Client<C> {
+    connector: C,
+}
+
+fn build<C>(_connector: C) -> Client<C> {
+    unimplemented!()
+}
+
+fn client<H>(handler: H) -> Client<impl Connect>
+where H: Fn() + Copy
+{
+    let connector = Connector {
+        handler,
+    };
+    let client = build(connector);
+    client
+}
+
+fn main() { }
+