summaryrefslogtreecommitdiffstats
path: root/tests/ui/feature-gates/feature-gate-impl_trait_in_fn_trait_return.rs
blob: 1b9530fa82f38be026ec4c15791ba30ed2c680be (plain)
1
2
3
4
5
6
fn f() -> impl Fn() -> impl Sized { || () }
//~^ ERROR `impl Trait` only allowed in function and inherent method argument and return types, not in `Fn` trait return
fn g() -> &'static dyn Fn() -> impl Sized { &|| () }
//~^ ERROR `impl Trait` only allowed in function and inherent method argument and return types, not in `Fn` trait return

fn main() {}