summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/track-caller/issue-105134.rs
blob: 4e52b8e250b9fa6b3e8989089052fc63e4616184 (plain)
1
2
3
4
5
6
7
8
9
10
11
// check-pass
// edition:2021

#[track_caller]
fn f() {
    let _ = async {};
}

fn main() {
    f();
}