blob: c71f794d5d12531e40ddec344b16a9ce2096e8f9 [file] [log] [blame] [edit]
//@ revisions: edition2015 edition2021
//@[edition2021]edition:2021
#![allow(warnings)]
fn ice() -> impl AsRef<Fn(&())> {
//[edition2015]~^ ERROR: the trait bound `(): AsRef<(dyn for<'a> Fn(&'a ()) + 'static)>` is not satisfied [E0277]
//[edition2021]~^^ ERROR: expected a type, found a trait [E0782]
todo!()
}
fn main() {}