mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
18 lines
479 B
Solidity
18 lines
479 B
Solidity
contract C {
|
|
function f(bytes memory data) public pure {
|
|
bytes32 k = keccak256(data);
|
|
fi(data, k);
|
|
}
|
|
function fi(bytes memory data, bytes32 k) internal pure {
|
|
bytes32 h = sha256(data);
|
|
assert(h == k);
|
|
}
|
|
}
|
|
// ====
|
|
// SMTEngine: all
|
|
// SMTIgnoreCex: yes
|
|
// ----
|
|
// Warning 1218: (196-210): CHC: Error trying to invoke SMT solver.
|
|
// Warning 6328: (196-210): CHC: Assertion violation might happen here.
|
|
// Warning 4661: (196-210): BMC: Assertion violation happens here.
|