]> git.lizzy.rs Git - rust.git/commitdiff
Handle `ReEmpty` for `impl Trait`
authorAndrew Paseltiner <apaseltiner@gmail.com>
Wed, 7 Sep 2016 22:26:53 +0000 (18:26 -0400)
committerAndrew Paseltiner <apaseltiner@gmail.com>
Wed, 7 Sep 2016 22:26:53 +0000 (18:26 -0400)
Closes #35668

src/librustc_typeck/check/writeback.rs
src/test/compile-fail/issue-35668.rs [new file with mode: 0644]

index 4be032c6f7f095767818efad7498ecd65fbb33b2..0b70d904c26549830c9a3326afb669ccfa736a93 100644 (file)
@@ -319,7 +319,8 @@ fn visit_anon_types(&self, item_id: ast::NodeId) {
             let outside_ty = gcx.fold_regions(&inside_ty, &mut false, |r, _| {
                 match *r {
                     // 'static is valid everywhere.
-                    ty::ReStatic => gcx.mk_region(ty::ReStatic),
+                    ty::ReStatic |
+                    ty::ReEmpty => gcx.mk_region(*r),
 
                     // Free regions that come from early-bound regions are valid.
                     ty::ReFree(ty::FreeRegion {
@@ -341,7 +342,6 @@ fn visit_anon_types(&self, item_id: ast::NodeId) {
                     }
 
                     ty::ReVar(_) |
-                    ty::ReEmpty |
                     ty::ReErased => {
                         let span = reason.span(self.tcx());
                         span_bug!(span, "invalid region in impl Trait: {:?}", r);
diff --git a/src/test/compile-fail/issue-35668.rs b/src/test/compile-fail/issue-35668.rs
new file mode 100644 (file)
index 0000000..c9323db
--- /dev/null
@@ -0,0 +1,24 @@
+// 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.
+
+#![feature(conservative_impl_trait)]
+
+fn func<'a, T>(a: &'a [T]) -> impl Iterator<Item=&'a T> {
+    a.iter().map(|a| a*a)
+    //~^ ERROR binary operation `*` cannot be applied to type `&T`
+}
+
+fn main() {
+    let a = (0..30).collect::<Vec<_>>();
+
+    for k in func(&a) {
+        println!("{}", k);
+    }
+}