solidity/test/libsolidity/smtCheckerTests/external_calls/external_hash.sol

30 lines
521 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
abstract contract Crypto {
function hash(bytes32) external pure virtual returns (bytes32);
}
contract C {
address owner;
bytes32 sig_1;
bytes32 sig_2;
Crypto d;
2020-06-23 12:14:24 +00:00
constructor() {
owner = msg.sender;
}
function f1(bytes32 _msg) public {
address prevOwner = owner;
sig_1 = d.hash(_msg);
sig_2 = d.hash(_msg);
assert(prevOwner == owner);
}
function inv() public view {
assert(sig_1 == sig_2);
}
}
// ----
2020-06-23 12:14:24 +00:00
// Warning 4661: (423-445): Assertion violation happens here