solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/219_memory_arrays_not_resizeable.sol

9 lines
158 B
Solidity

contract C {
function f() public {
uint[] memory x;
x.length = 2;
}
}
// ----
// TypeError: (72-80): Memory arrays cannot be resized.