mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
30 lines
528 B
Solidity
30 lines
528 B
Solidity
|
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;
|
||
|
|
||
|
constructor() public {
|
||
|
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);
|
||
|
}
|
||
|
}
|
||
|
// ----
|
||
|
// Warning 4661: (430-452): Assertion violation happens here
|