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

7 lines
111 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract C {
function f(bytes calldata b) external pure {
((b[:])[5]);
}
}