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

fn main() {}