about summary refs log tree commit diff
path: root/tests/ui/async-await/in-trait/issue-102219.rs
blob: e373b17db4f4a166946fc0e18bd08095b46de038 (plain)
1
2
3
4
5
6
7
8
//@ compile-flags:--crate-type=lib
//@ edition:2021
//@ check-pass

trait T {
    #[allow(async_fn_in_trait)]
    async fn foo();
}