1 2 3 4 5 6 7 8 9 10 11 12
#![allow(unused)] #![allow(clippy::disallowed_names)] use std::task::{Poll, ready}; fn wobble() -> Poll<Option<Result<(), ()>>> { let foo: Poll<Option<Result<(), ()>>> = Poll::Ready(Some(Ok(()))); let bar = ready!(foo?); todo!() } fn main() {}