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

6 lines
141 B
Solidity
Raw Normal View History

pragma experimental SMTChecker;
contract e {
function f(uint[] calldata) internal {}
function h(uint[] calldata c) external { f(c[:]); }
}