Skip to content

Commit

Permalink
Better comments for FIXMEs
Browse files Browse the repository at this point in the history
  • Loading branch information
petrochenkov committed Jan 26, 2017
1 parent 65aeafa commit bd4d5ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libsyntax/parse/parser.rs
Expand Up @@ -1357,10 +1357,10 @@ impl<'a> Parser<'a> {
self.expect_and()?;
self.parse_borrowed_pointee()?
} else if self.check_keyword(keywords::For) {
// FIXME plus priority
// FIXME `+` has incorrect priority in trait object types starting with `for` (#39317).
self.parse_for_in_type()?
} else if self.eat_keyword(keywords::Impl) {
// FIXME plus priority
// FIXME figure out priority of `+` in `impl Trait1 + Trait2` (#34511).
self.parse_impl_trait_type()?
} else if self.token_is_bare_fn_keyword() {
// BARE FUNCTION
Expand Down

0 comments on commit bd4d5ec

Please sign in to comment.