You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Should hevm enforce freshness conditions on newly created symbolic addresses?
I am working with this example:
contract A {
uint public x;
constructor () {
x = 42;
}
}
contract B {
A a1;
A a2;
constructor() {
a1 = new A();
a2 = new A();
assert (address(a1) != address(a2));
}
}
Should hevm enforce freshness conditions on newly created symbolic addresses?
I am working with this example:
running
hevm symbolic --sig "B()" --code <the-creation-code>
returnsthe same happens with
--initial-storage Empty
.Removing the assertion results in
QED
.The text was updated successfully, but these errors were encountered: