Skip to content

Commit 56bd4b5

Browse files
committed
Error message
1 parent 3639bfb commit 56bd4b5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

usvm-ts/src/main/kotlin/org/usvm/machine/operator/TsBinaryOperator.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -633,8 +633,8 @@ sealed interface TsBinaryOperator {
633633
}
634634
}
635635

636-
check(!lhsValue.isFakeObject())
637-
check(!rhsValue.isFakeObject())
636+
check(!lhsValue.isFakeObject()) { "Nested fake objects are not supported" }
637+
check(!rhsValue.isFakeObject()) { "Nested fake objects are not supported" }
638638

639639
if (lhsValue.sort == addressSort && rhsValue.sort == addressSort) {
640640
val left = lhsValue.asExpr(addressSort)

0 commit comments

Comments
 (0)