about summary refs log tree commit diff
path: root/compiler/rustc_parse/src/parser
diff options
context:
space:
mode:
authorTakayuki Maeda <takoyaki0316@gmail.com>2022-03-09 14:10:34 +0900
committerTakayuki Maeda <takoyaki0316@gmail.com>2022-03-09 14:10:34 +0900
commit35147413585bb74837aa32448dd9b9ca78219974 (patch)
treeaa151b467b62cb1f2b34c4184724b723b7e4d0a2 /compiler/rustc_parse/src/parser
parenta34015c0d0c264e98b6753da4c5454433092c02b (diff)
downloadrust-35147413585bb74837aa32448dd9b9ca78219974.tar.gz
rust-35147413585bb74837aa32448dd9b9ca78219974.zip
remove an unnecessary comment
Diffstat (limited to 'compiler/rustc_parse/src/parser')
-rw-r--r--compiler/rustc_parse/src/parser/path.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_parse/src/parser/path.rs b/compiler/rustc_parse/src/parser/path.rs
index f300b9c5ae4..c8ebf707477 100644
--- a/compiler/rustc_parse/src/parser/path.rs
+++ b/compiler/rustc_parse/src/parser/path.rs
@@ -635,7 +635,6 @@ impl<'a> Parser<'a> {
                             return Ok(Some(self.dummy_const_arg_needs_braces(err, expr.span)));
                         }
                     }
-                    // self.parse_fn_call_expr();
                     // Try to recover from possible `const` arg without braces.
                     return self.recover_const_arg(start, err).map(Some);
                 }