rust/tests/ui/impl-trait/issues/issue-86201.rs
2023-01-11 09:32:08 +00:00

14 lines
236 B
Rust

#![feature(unboxed_closures)]
#![feature(type_alias_impl_trait)]
// check-pass
type FunType = impl Fn<()>;
static STATIC_FN: FunType = some_fn;
fn some_fn() {}
fn main() {
let _: <FunType as FnOnce<()>>::Output = STATIC_FN();
}