]> git.lizzy.rs Git - rust.git/commitdiff
register fn-ptr coercion obligations out of a snapshot
authorAriel Ben-Yehuda <ariel.byd@gmail.com>
Mon, 21 Aug 2017 11:11:57 +0000 (14:11 +0300)
committerAriel Ben-Yehuda <ariel.byd@gmail.com>
Mon, 21 Aug 2017 11:11:57 +0000 (14:11 +0300)
Fixes #43923.

src/librustc_typeck/check/coercion.rs
src/test/run-pass/issue-43923.rs [new file with mode: 0644]

index 48671e864b211b1a05dac0bcb3ffb33b7eab695a..0ec30fb26d66a8d0a621688932db3dcb72d11f04 100644 (file)
@@ -807,8 +807,7 @@ fn try_find_coercion_lub<E>(&self,
             let lub_ty = self.commit_if_ok(|_| {
                 self.at(cause, self.param_env)
                     .lub(prev_ty, new_ty)
-                    .map(|ok| self.register_infer_ok_obligations(ok))
-            });
+            }).map(|ok| self.register_infer_ok_obligations(ok));
 
             if lub_ty.is_ok() {
                 // We have a LUB of prev_ty and new_ty, just return it.
diff --git a/src/test/run-pass/issue-43923.rs b/src/test/run-pass/issue-43923.rs
new file mode 100644 (file)
index 0000000..e1992e4
--- /dev/null
@@ -0,0 +1,19 @@
+// Copyright 2017 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.
+
+struct A<T: ?Sized> { ptr: T }
+
+fn foo<T>(x: &A<[T]>) {}
+
+fn main() {
+    let a = foo;
+    let b = A { ptr: [a, a, a] };
+    a(&A { ptr: [()] });
+}