Sign in
android
/
toolchain
/
rustc
/
da60c8575e02ed54fcffcb7f2f9289b4705b60ff
/
.
/
src
/
tools
/
rustfmt
/
tests
/
source
/
async_fn.rs
blob: f6c5f5e1c9ac93812125aac89ce782e49eeebde2 [
file
] [
log
] [
blame
]
// rustfmt-edition: 2018
async
fn
bar
()
->
Result
<(),
()>
{
Ok
(())
}
pub
async
fn
baz
()
->
Result
<(),
()>
{
Ok
(())
}
async
unsafe
fn
foo
()
{
async
move
{
Ok
(())
}
}
async
unsafe
fn
rust
()
{
async
move
{
// comment
Ok
(())
}
}