about summary refs log tree commit diff
path: root/tests/ui/async-await/in-trait/hir-hash.rs
blob: 8324fec8282f1ef54608b15596dca5cd1e313f81 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Issue #122508

//@ check-pass
//@ incremental
//@ edition:2021

trait MyTrait {
    async fn bar(&self) -> i32;
}

fn main() {}