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

15 lines
364 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 > 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
// ----