Fix binop-fetching

This commit is contained in:
Sofia 2025-07-25 16:57:44 +03:00
parent 8d3dd4a49f
commit 2cb61de294

View File

@ -315,6 +315,9 @@ impl<'outer> ScopeTypeRefs<'outer> {
let Some((_, binop)) = iter.next() else {
break None;
};
if binop.operator != *op {
continue;
}
if let Some(ret) = try_binop(lhs, rhs, binop) {
break Some(ret);
}