We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 10b1b26 + a35395b commit 5611fcbCopy full SHA for 5611fcb
1 file changed
src/main/scala/viper/silver/ast/Program.scala
@@ -722,7 +722,7 @@ sealed abstract class RelOp(val op: String) extends BoolDomainFunc {
722
case object AddOp extends SumOp("+") with IntBinOp with IntDomainFunc
723
case object SubOp extends SumOp("-") with IntBinOp with IntDomainFunc
724
case object MulOp extends ProdOp("*") with IntBinOp with IntDomainFunc
725
-case object DivOp extends ProdOp("/") with IntBinOp with IntDomainFunc
+case object DivOp extends ProdOp("\\") with IntBinOp with IntDomainFunc
726
case object ModOp extends ProdOp("%") with IntBinOp with IntDomainFunc
727
728
// Arithmetic permission operators
0 commit comments