remove %% operator

This commit is contained in:
Kevin Gillette 2022-04-18 14:01:01 -06:00
parent 777363afd0
commit cd8ab753e3
No known key found for this signature in database
GPG key ID: 9009F701BBC0D562
7 changed files with 4 additions and 16 deletions

View file

@ -2762,7 +2762,6 @@ where
"&&" => good!(BinOp::And, 2),
"||" => good!(BinOp::Or, 2),
"//" => good!(BinOp::DoubleSlash, 2),
"%%" => good!(BinOp::DoublePercent, 2),
"->" => {
// makes no progress, so it does not interfere with `_ if isGood -> ...`
Err((NoProgress, to_error("->", state.pos()), state))