2018-11-03 02:29:26 +01:00
|
|
|
// This used to ICE because it creates an `impl Trait` that captures a
|
|
|
|
// hidden empty region.
|
|
|
|
|
2019-11-04 00:00:00 +00:00
|
|
|
// check-pass
|
2018-11-03 02:29:26 +01:00
|
|
|
|
2019-05-01 21:15:01 +01:00
|
|
|
fn server() -> impl FilterBase2 {
|
2018-11-03 02:29:26 +01:00
|
|
|
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 { }
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { server(); }
|