solidity/test/libsolidity/smtCheckerTests/array_members/length_function_call.sol
2021-04-20 17:38:29 +02:00

12 lines
186 B
Solidity

contract C {
uint[] arr;
function f() public view {
assert(arr.length == g().length);
}
function g() internal pure returns (uint[] memory) {
}
}
// ====
// SMTEngine: all
// ----