about summary refs log tree commit diff
path: root/tests/ui/parser/misspelled-keywords/hrdt.rs
blob: 9ca9e1bfbeeccf739b31838718e947d4c091a6be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
struct Closure<F> {
    data: (u8, u16),
    func: F,
}

impl<F> Closure<F>
    Where for<'a> F: Fn(&'a (u8, u16)) -> &'a u8,
//~^ ERROR expected one of
{
    fn call(&self) -> &u8 {
        (self.func)(&self.data)
    }
}


fn main() {}