rust-clippy/src
Kyle Huey 4972989b61 Add a lint for an async block/closure that yields a type that is itself awaitable.
This catches bugs of the form

tokio::spawn(async move {
    let f = some_async_thing();
    f // Oh no I forgot to await f so that work will never complete.
});
2020-08-29 15:33:54 -07:00
..
lintlist Add a lint for an async block/closure that yields a type that is itself awaitable. 2020-08-29 15:33:54 -07:00
driver.rs fix match_like_matches_macro in clippy 2020-07-06 18:35:58 +02:00
main.rs Merge commit 'c2c07fa9d095931eb5684a42942a7b573a0c5238' into clippyup 2020-06-23 17:05:22 +02:00