From 4083ad7a0b852b800d360467624b3ce773d0a9b2 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 13 Jul 2015 10:13:31 -0700 Subject: [PATCH] Update FOLLOW set for `ty` tokens Accounts for rust-lang/rust#27000 --- text/0550-macro-future-proofing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text/0550-macro-future-proofing.md b/text/0550-macro-future-proofing.md index d9012492808..42f0608d8de 100644 --- a/text/0550-macro-future-proofing.md +++ b/text/0550-macro-future-proofing.md @@ -106,7 +106,7 @@ The current legal fragment specifiers are: `item`, `block`, `stmt`, `pat`, - `FOLLOW(pat)` = `{FatArrow, Comma, Eq}` - `FOLLOW(expr)` = `{FatArrow, Comma, Semicolon}` -- `FOLLOW(ty)` = `{Comma, FatArrow, Colon, Eq, Gt, Ident(as)}` +- `FOLLOW(ty)` = `{Comma, FatArrow, Colon, Eq, Gt, Ident(as), Semi}` - `FOLLOW(stmt)` = `FOLLOW(expr)` - `FOLLOW(path)` = `FOLLOW(ty)` - `FOLLOW(block)` = any token