diff --git a/src/expr.rs b/src/expr.rs index 1d7c7bf4b5..d5c631ed37 100644 --- a/src/expr.rs +++ b/src/expr.rs @@ -2400,9 +2400,7 @@ pub(crate) mod parsing { fn expr_become(input: ParseStream) -> Result { let begin = input.fork(); input.parse::()?; - if can_begin_expr(input) { - input.parse::()?; - } + input.parse::()?; Ok(Expr::Verbatim(verbatim::between(&begin, input))) }