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 > 10);
|
2020-09-24 17:24:33 +00:00
|
|
|
require(b[10] == 0xff);
|
|
|
|
assert(bytes(b[10:20]).length == 10);
|
2020-12-10 13:06:34 +00:00
|
|
|
// Disabled because of Spacer nondeterminism
|
|
|
|
//assert(bytes(b[10:20])[0] == 0xff);
|
2020-07-27 17:39:17 +00:00
|
|
|
// Disabled because of Spacer nondeterminism
|
|
|
|
//assert(bytes(b[10:20])[5] == 0xff);
|
2020-09-24 17:24:33 +00:00
|
|
|
}
|
|
|
|
}
|
2021-03-31 15:11:54 +00:00
|
|
|
// ====
|
|
|
|
// SMTEngine: all
|
2020-09-24 17:24:33 +00:00
|
|
|
// ----
|
2023-02-09 16:07:13 +00:00
|
|
|
// Info 1391: CHC: 2 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.
|