Sign in
rust
/
rust-lang
/
rust
/
refs/heads/beta
/
.
/
tests
/
ui
/
suggestions
/
async-fn-ctor-passed-as-arg-where-it-should-have-been-called.rs
blob: 8e67f4e7398cd508ba0558c1fdcf7b76b55557c6 [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2018
use
std
::
future
::
Future
;
async
fn
foo
()
{}
fn
bar
(
f
:
impl
Future
<
Output
=()>)
{}
fn
main
()
{
bar
(
foo
);
//~ERROR E0277
let
async_closure
=
async
||
();
bar
(
async_closure
);
//~ERROR E0277
}