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
104 B
Rust
Raw Normal View History

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