Skip to content

Commit 4805a97

Browse files
Rollup merge of rust-lang#55638 - pnkfelix:issue-55608-ice-reempty-msg_span_from_free_region, r=estebank
Fix ICE in msg_span_from_free_region on ReEmpty On an example like this: ```rust #![feature(conservative_impl_trait)] fn server() -> impl FilterBase2 { segment2(|| { loop { } }).map2(|| "") } trait FilterBase2 { fn map2<F>(self, _fn: F) -> Map2<F> where Self: Sized { loop { } } } struct Map2<F> { _func: F } impl<F> FilterBase2 for Map2<F> { } fn segment2<F>(_fn: F) -> Map2<F> where F: Fn() -> Result<(), ()> { loop { } } ``` we now, instead of ICE'ing, get a diagnostic like: ``` error[E0700]: hidden type for `impl Trait` captures lifetime that does not appear in bounds --> issue-55608.rs:3:16 | 3 | fn server() -> impl FilterBase2 { | ^^^^^^^^^^^^^^^^ | = note: hidden type `Map2<[[email protected]:4:36: 4:41]>` captures an empty lifetime ``` Fix rust-lang#55608
2 parents 78cab36 + cc33aec commit 4805a97

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed

src/librustc/infer/error_reporting/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,7 @@ impl<'a, 'gcx, 'tcx> TyCtxt<'a, 'gcx, 'tcx> {
178178
self.msg_span_from_early_bound_and_free_regions(region)
179179
}
180180
ty::ReStatic => ("the static lifetime".to_owned(), None),
181+
ty::ReEmpty => ("an empty lifetime".to_owned(), None),
181182
_ => bug!("{:?}", region),
182183
}
183184
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// This used to ICE because it creates an `impl Trait` that captures a
2+
// hidden empty region.
3+
4+
#![feature(conservative_impl_trait)]
5+
6+
fn server() -> impl FilterBase2 { //~ ERROR [E0700]
7+
segment2(|| { loop { } }).map2(|| "")
8+
}
9+
10+
trait FilterBase2 {
11+
fn map2<F>(self, _fn: F) -> Map2<F> where Self: Sized { loop { } }
12+
}
13+
14+
struct Map2<F> { _func: F }
15+
16+
impl<F> FilterBase2 for Map2<F> { }
17+
18+
fn segment2<F>(_fn: F) -> Map2<F> where F: Fn() -> Result<(), ()> {
19+
loop { }
20+
}
21+
22+
fn main() { server(); }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
error[E0700]: hidden type for `impl Trait` captures lifetime that does not appear in bounds
2+
--> $DIR/issue-55608-captures-empty-region.rs:6:16
3+
|
4+
LL | fn server() -> impl FilterBase2 { //~ ERROR [E0700]
5+
| ^^^^^^^^^^^^^^^^
6+
|
7+
= note: hidden type `Map2<[closure@$DIR/issue-55608-captures-empty-region.rs:7:36: 7:41]>` captures an empty lifetime
8+
9+
error: aborting due to previous error
10+
11+
For more information about this error, try `rustc --explain E0700`.

0 commit comments

Comments
 (0)