DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg2-3 / tests / ui / type-alias-impl-trait / under-binder.rs
123456789
#![feature(type_alias_impl_trait)] type Opaque<'a> = impl Sized + 'a; fn test(f: fn(u8)) -> fn(Opaque<'_>) { f //~ ERROR E0792 } fn main() {}