mirror of https://github.com/rust-lang/rust
14 lines
425 B
Plaintext
14 lines
425 B
Plaintext
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
|
|
|