mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
20 lines
398 B
Rust
20 lines
398 B
Rust
use std::future::Future;
|
|
|
|
async fn some_async_fn() {}
|
|
|
|
fn sync_side_effects() {}
|
|
fn custom() -> impl Future<Output = ()> {
|
|
sync_side_effects();
|
|
async {}
|
|
}
|
|
|
|
fn do_something_to_future(future: &mut impl Future<Output = ()>) {}
|
|
|
|
fn main() {
|
|
let _ = some_async_fn();
|
|
let _ = custom();
|
|
|
|
let mut future = some_async_fn();
|
|
do_something_to_future(&mut future);
|
|
let _ = future;
|
|
}
|