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

10 lines
177 B
Solidity

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