]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-18919.rs
Rollup merge of #66134 - estebank:unknown-formatting-trait, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-18919.rs
1 type FuncType<'f> = dyn Fn(&isize) -> isize + 'f;
2
3 fn ho_func(f: Option<FuncType>) {
4     //~^ ERROR the size for values of type
5 }
6
7 fn main() {}