blob: ea0d0ccbc553270c9fc290f10065a3080571377d [file] [log] [blame]
trait Future {
type Item;
type Error;
}
use std::error::Error;
fn foo() -> impl Future<Item=(), Error=Box<dyn Error>> {
//~^ ERROR not satisfied
Ok(())
}
fn main() {}