blob: 91fbb13cd69885253925aa8a8c79d47efa9e1b5b [file] [log] [blame]
type FuncType<'f> = dyn Fn(&isize) -> isize + 'f;
fn ho_func(f: Option<FuncType>) {
//~^ ERROR the size for values of type
}
fn main() {}