Files
rust/tests
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
..
2020-08-25 18:01:08 +02:00
2019-06-21 16:47:34 +02:00