mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
19 lines
478 B
Solidity
19 lines
478 B
Solidity
pragma experimental SMTChecker;
|
|
|
|
contract C {
|
|
function f(bytes memory data) public pure {
|
|
bytes32 k = keccak256(data);
|
|
bytes32 s = sha256(data);
|
|
bytes32 r = ripemd160(data);
|
|
assert(k == s);
|
|
assert(s == r);
|
|
assert(r == k);
|
|
}
|
|
}
|
|
// ====
|
|
// SMTIgnoreCex: yes
|
|
// ----
|
|
// Warning 6328: (183-197): CHC: Assertion violation happens here.
|
|
// Warning 6328: (201-215): CHC: Assertion violation happens here.
|
|
// Warning 6328: (219-233): CHC: Assertion violation happens here.
|