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

11 lines
173 B
Solidity

contract C {
function f(bytes calldata x) external pure {
x[:18726387213];
x[18726387213:];
x[18726387213:111111111111111111];
}
}
// ====
// SMTEngine: all
// ----