solidity/test/libsolidity/smtCheckerTests/operators/slice_default_start.sol

18 lines
668 B
Solidity
Raw Normal View History

2020-09-24 17:24:33 +00:00
contract C {
function f(bytes calldata b) external pure {
2021-03-23 18:15:14 +00:00
require(b.length > 20);
2020-09-24 17:24:33 +00:00
require(b[0] == 0xff);
assert(bytes(b[:20]).length == 20);
assert(bytes(b[:20])[0] == 0xff);
assert(bytes(b[:20])[5] == 0xff);
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all
2020-09-24 17:24:33 +00:00
// ----
2021-03-31 15:11:54 +00:00
// Warning 6328: (150-182): CHC: Assertion violation might happen here.
2021-11-23 17:08:36 +00:00
// Warning 6328: (186-218): CHC: Assertion violation might happen here.
2023-02-09 16:07:13 +00:00
// Info 1391: CHC: 4 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.
2021-03-31 15:11:54 +00:00
// Warning 4661: (150-182): BMC: Assertion violation happens here.
2021-11-23 17:08:36 +00:00
// Warning 4661: (186-218): BMC: Assertion violation happens here.