solidity/test/libsolidity/smtCheckerTests/array_members/length_function_call.sol

10 lines
177 B
Solidity
Raw Normal View History

2020-04-14 09:09:38 +00:00
contract C {
uint[] arr;
function f() public view {
assert(arr.length == g().length);
}
function g() internal pure returns (uint[] memory) {
}
}
2021-03-31 15:11:54 +00:00
// ====
// SMTEngine: all