Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
async-await
/
issue-107036.rs
blob: 917eef2e5ced9e291c0b85c9550a316c16975753 [
file
] [
log
] [
blame
] [
edit
]
//@ aux-build:issue-107036.rs
//@ edition:2021
//@ check-pass
extern
crate issue_107036
;
use
issue_107036
::
S
;
async
fn
f
()
{
S
{}.
f
().
await
;
}
fn
main
()
{
let
_
=
f
();
}