summary refs log tree commit diff
path: root/src/test/ui/issues/issue-18919.rs
blob: 9db3084918239805f3b5f6fd309f15fa12fe5cee (plain)
1
2
3
4
5
6
7
type FuncType<'f> = Fn(&isize) -> isize + 'f;

fn ho_func(f: Option<FuncType>) {
    //~^ ERROR the size for values of type
}

fn main() {}