rust/tests/ui/async-await/track-caller/issue-105134.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
106 B
Rust
Raw Permalink Normal View History

//@ check-pass
//@ edition:2021
#[track_caller]
fn f() {
let _ = async {};
}
fn main() {
f();
}