solidity/test/libsolidity/smtCheckerTests/array_members/length_function_call.sol
2020-05-14 23:32:29 +02:00

11 lines
185 B
Solidity

pragma experimental SMTChecker;
contract C {
uint[] arr;
function f() public view {
assert(arr.length == g().length);
}
function g() internal pure returns (uint[] memory) {
}
}