Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
async-await
/
track-caller
/
issue-105134.rs
blob: c9f3d7e8c2261458b0f16b3afd1e1fdbeab596aa [
file
] [
log
] [
blame
]
//@ check-pass
//@ edition:2021
#[
track_caller
]
fn
f
()
{
let
_
=
async
{};
}
fn
main
()
{
f
();
}