blob: 789b751fcc90dc4bc82a6936a81a8db50850fb12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//@ edition: 2021
//@ check-pass
use std::future::Future;
use std::marker::PhantomData;
trait Lockable<K, V> {
#[allow(async_fn_in_trait)]
async fn lock_all_entries(&self) -> impl Future<Output = Guard<'_>>;
}
struct Guard<'a>(PhantomData<&'a ()>);
fn main() {}
|