rust/tests/ui/async-await/auxiliary/issue-107036.rs

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

13 lines
142 B
Rust
Raw Normal View History

2023-01-18 12:11:19 -06:00
// edition:2021
pub trait T {}
impl T for () {}
pub struct S {}
impl S {
pub async fn f<'a>(&self) -> impl T + 'a {
()
}
}