diff options
| author | Esteban Küber <esteban@kuber.com.ar> | 2018-02-01 14:16:53 -0800 |
|---|---|---|
| committer | Esteban Küber <esteban@kuber.com.ar> | 2018-02-01 15:16:02 -0800 |
| commit | fd3f2312a75bcc4c8121ad324a012c3b8befb61c (patch) | |
| tree | 41ef34572836e3bf8a726570706642da3155bed6 /src/libsyntax/parse/parser.rs | |
| parent | 378e73e6db0b4d47586f4e3ec975e43ef530ac99 (diff) | |
| download | rust-fd3f2312a75bcc4c8121ad324a012c3b8befb61c.tar.gz rust-fd3f2312a75bcc4c8121ad324a012c3b8befb61c.zip | |
Fix test after rebase
Diffstat (limited to 'src/libsyntax/parse/parser.rs')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index 9d573ea0e7c..4c61ab6bd78 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -777,10 +777,6 @@ impl<'a> Parser<'a> { self.parse_ident_common(true) } - pub fn parse_ident_attr(&mut self) -> PResult<'a, ast::Ident> { - self.parse_ident() - } - fn parse_ident_common(&mut self, recover: bool) -> PResult<'a, ast::Ident> { match self.token { token::Ident(i) => { |
