mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
68 lines
1.2 KiB
Rust
68 lines
1.2 KiB
Rust
// run-rustfix
|
|
|
|
#![feature(async_closure)]
|
|
#![warn(clippy::async_yields_async)]
|
|
|
|
use core::future::Future;
|
|
use core::pin::Pin;
|
|
use core::task::{Context, Poll};
|
|
|
|
struct CustomFutureType;
|
|
|
|
impl Future for CustomFutureType {
|
|
type Output = u8;
|
|
|
|
fn poll(self: Pin<&mut Self>, _: &mut Context) -> Poll<Self::Output> {
|
|
Poll::Ready(3)
|
|
}
|
|
}
|
|
|
|
fn custom_future_type_ctor() -> CustomFutureType {
|
|
CustomFutureType
|
|
}
|
|
|
|
async fn f() -> CustomFutureType {
|
|
// Don't warn for functions since you have to explicitly declare their
|
|
// return types.
|
|
CustomFutureType
|
|
}
|
|
|
|
#[rustfmt::skip]
|
|
fn main() {
|
|
let _f = {
|
|
3
|
|
};
|
|
let _g = async {
|
|
3
|
|
};
|
|
let _h = async {
|
|
async {
|
|
3
|
|
}
|
|
};
|
|
let _i = async {
|
|
CustomFutureType
|
|
};
|
|
let _i = async || {
|
|
3
|
|
};
|
|
let _j = async || {
|
|
async {
|
|
3
|
|
}
|
|
};
|
|
let _k = async || {
|
|
CustomFutureType
|
|
};
|
|
let _l = async || CustomFutureType;
|
|
let _m = async || {
|
|
println!("I'm bored");
|
|
// Some more stuff
|
|
|
|
// Finally something to await
|
|
CustomFutureType
|
|
};
|
|
let _n = async || custom_future_type_ctor();
|
|
let _o = async || f();
|
|
}
|