]> git.lizzy.rs Git - rust.git/blob - tests/ui/async-await/track-caller/issue-105134.rs
Rollup merge of #106625 - Swatinem:ref/cov6, r=nagisa
[rust.git] / tests / ui / async-await / track-caller / issue-105134.rs
1 // check-pass
2 // edition:2021
3
4 #[track_caller]
5 fn f() {
6     let _ = async {};
7 }
8
9 fn main() {
10     f();
11 }