Rollup merge of #48036 - durka:proc-macro-doteq, r=alexcrichton
proc_macro: don't panic parsing ..= (fix #47950)
This commit is contained in:
commit
7f0e87a781
@ -685,7 +685,7 @@ impl TokenTree {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
DotEq => unreachable!(),
|
DotEq => joint!('.', Eq),
|
||||||
OpenDelim(..) | CloseDelim(..) => unreachable!(),
|
OpenDelim(..) | CloseDelim(..) => unreachable!(),
|
||||||
Whitespace | Comment | Shebang(..) | Eof => unreachable!(),
|
Whitespace | Comment | Shebang(..) | Eof => unreachable!(),
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user