Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
error: expected one of `!`, `(`, `+`, `::`, `<`, `where`, or `{`, found keyword `for`
--> $DIR/hrdt.rs:7:11
|
LL | Where for<'a> F: Fn(&'a (u8, u16)) -> &'a u8,
| ^^^ expected one of 7 possible tokens
help: write keyword `where` in lowercase (notice the capitalization difference)
LL | where for<'a> F: Fn(&'a (u8, u16)) -> &'a u8,
| ~~~~~
error: aborting due to 1 previous error