error: expected one of `+`, `,`, or `>`, found `)` --> $DIR/bad-turbofish-hints-issue-121901.rs:3:40 | LL | type One = for<'a> fn(Box` | help: you might have meant to end the type parameters here | LL | type One = for<'a> fn(Box); | + error: unmatched angle bracket --> $DIR/bad-turbofish-hints-issue-121901.rs:5:41 | LL | type Two = for<'a> fn(Box>); | ^ | help: remove extra angle bracket | LL - type Two = for<'a> fn(Box>); LL + type Two = for<'a> fn(Box); | error: aborting due to 2 previous errors