blob: 46c2c22cac1c97b26cd66d334a760e1a5f138f67 [file] [log] [blame]
#![feature(type_alias_impl_trait)]
#![allow(dead_code)]
// FIXME: this is ruled out for now but should work
type Foo = fn() -> impl Send;
//~^ ERROR: `impl Trait` is not allowed in `fn` pointer return types
fn make_foo() -> Foo {
|| 15
}
fn main() {}