solidity/test/libsolidity/smtCheckerTests/file_level/free_function_1.sol
2021-07-19 15:20:11 +02:00

17 lines
523 B
Solidity

contract C {
uint[] data;
function f(uint x, uint[] calldata input) public view returns (uint, uint) {
(uint a, uint[] calldata b) = fun(input, data);
return (a, b.length + x);
}
}
function fun(uint[] calldata _x, uint[] storage _y) view returns (uint, uint[] calldata) {
return (_y[0], _x);
}
// ====
// SMTEngine: all
// SMTIgnoreCex: yes
// ----
// Warning 4984: (168-180): CHC: Overflow (resulting value larger than 2**256 - 1) happens here.
// Warning 6368: (289-294): CHC: Out of bounds access happens here.