solidity/test/libsolidity/smtCheckerTests/operators/slice.sol
2021-04-08 21:03:39 +02:00

15 lines
364 B
Solidity

contract C {
function f(bytes calldata b) external pure {
require(b.length > 10);
require(b[10] == 0xff);
assert(bytes(b[10:20]).length == 10);
// Disabled because of Spacer nondeterminism
//assert(bytes(b[10:20])[0] == 0xff);
// Disabled because of Spacer nondeterminism
//assert(bytes(b[10:20])[5] == 0xff);
}
}
// ====
// SMTEngine: all
// ----