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

13 lines
314 B
Solidity
Raw Normal View History

2020-09-24 17:24:33 +00:00
pragma experimental SMTChecker;
contract C {
function f(bytes calldata b) external pure {
require(b[10] == 0xff);
assert(bytes(b[10:20]).length == 10);
assert(bytes(b[10:20])[0] == 0xff);
assert(bytes(b[10:20])[5] == 0xff);
}
}
// ----
// Warning 6328: (198-232): CHC: Assertion violation happens here.