about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2018-03-06 11:33:26 +0100
committerRalf Jung <post@ralfj.de>2018-03-06 11:33:26 +0100
commit780b544a391fb2dc42d814ce8cb7e6ad3633fa39 (patch)
tree6c7c2e00ebf4b1966a44452529da928ef10f3de2 /src/libsyntax/parse
parent49abd8748357012e5db10bf11077384f727e2177 (diff)
downloadrust-780b544a391fb2dc42d814ce8cb7e6ad3633fa39.tar.gz
rust-780b544a391fb2dc42d814ce8cb7e6ad3633fa39.zip
note a FIXME
Diffstat (limited to 'src/libsyntax/parse')
-rw-r--r--src/libsyntax/parse/parser.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs
index ba8ccc2256f..b60a6b32fab 100644
--- a/src/libsyntax/parse/parser.rs
+++ b/src/libsyntax/parse/parser.rs
@@ -4827,6 +4827,7 @@ impl<'a> Parser<'a> {
                         }
                     ));
                 // FIXME: Decide what should be used here, `=` or `==`.
+                // FIXME: We are just dropping the binders in lifetime_defs on the floor here.
                 } else if self.eat(&token::Eq) || self.eat(&token::EqEq) {
                     let rhs_ty = self.parse_ty()?;
                     where_clause.predicates.push(ast::WherePredicate::EqPredicate(