rust/tests/ui/impl-trait/issues/issue-55608-captures-empty-region.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
458 B
Rust
Raw Normal View History

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