rust/tests/ui/async-await/issues/issue-62517-2.rs

17 lines
358 B
Rust
Raw Normal View History

// Regression test for #62517. We used to ICE when you had an `async
// fn` with an `impl Trait` return that mentioned a `dyn Bar` with no
// explicit lifetime bound.
//
// edition:2018
2019-08-19 12:53:06 -05:00
// check-pass
trait Object {}
2019-08-19 12:53:06 -05:00
trait Alpha<Param: ?Sized> {}
async fn foo<'a>(_: &'a ()) -> impl Alpha<dyn Object> {}
2019-08-19 12:53:06 -05:00
impl<T> Alpha<dyn Object> for T { }
fn main() { }