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
|
|
|
// ====
|
2021-03-12 23:02:36 +00:00
|
|
|
// SMTEngine: all
|