haha clippy

This commit is contained in:
nora 2022-06-26 12:03:25 +02:00
parent 91f4b397a2
commit dc200d2046

View file

@ -52,6 +52,7 @@ where
fn expr_bp(&mut self, min_bp: u8) -> Result<Spanned<Expr>> {
let mut lhs = self.get_lhs()?;
#[allow(clippy::while_let_loop)] // idc
loop {
let (tok, span) = match self.next_t() {
Ok(tok) => tok,