Fix test fallout from removing vecs_implicitly_copyable
This commit is contained in:
parent
5614e83e81
commit
ffcc680f9c
14 changed files with 52 additions and 62 deletions
|
@ -2388,7 +2388,7 @@ pub impl Parser {
|
|||
// preceded by unary-minus) or identifiers.
|
||||
let val = self.parse_literal_maybe_minus();
|
||||
if self.eat(&token::DOTDOT) {
|
||||
let end = if is_ident_or_path(&tok) {
|
||||
let end = if is_ident_or_path(tok) {
|
||||
let path = self.parse_path_with_tps(true);
|
||||
let hi = self.span.hi;
|
||||
self.mk_expr(lo, hi, expr_path(path))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue