Skip to content

Commit

Permalink
Fix quick tests
Browse files Browse the repository at this point in the history
  • Loading branch information
JakuJ committed Sep 1, 2023
1 parent 1185385 commit e877944
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions prusti-viper/src/encoder/procedure_encoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1618,8 +1618,8 @@ impl<'p, 'v: 'p, 'tcx: 'v> ProcedureEncoder<'p, 'v, 'tcx> {
mir::Rvalue::BinaryOp(op, box (ref left, ref right)) => {
self.encode_assign_binary_op(op, left, right, encoded_lhs, ty, location)?
}
mir::Rvalue::CheckedBinaryOp(_, _) => {
todo!()
mir::Rvalue::CheckedBinaryOp(op, box (ref left, ref right)) => {
self.encode_assign_checked_binary_op(op, left, right, encoded_lhs, ty, location)?
}
mir::Rvalue::UnaryOp(op, ref operand) => {
self.encode_assign_unary_op(op, operand, encoded_lhs, ty, location)?
Expand Down

0 comments on commit e877944

Please sign in to comment.