]> git.lizzy.rs Git - rust.git/blob - tests/ui/async-await/in-trait/issue-102219.rs
Rollup merge of #107186 - GuillaumeGomez:correct-pseudo-element-selector, r=notriddle
[rust.git] / tests / ui / async-await / in-trait / issue-102219.rs
1 // compile-flags:--crate-type=lib
2 // edition:2021
3 // check-pass
4
5 #![feature(async_fn_in_trait)]
6 #![allow(incomplete_features)]
7
8 trait T {
9     async fn foo();
10 }