solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/invalidArgs/creating_memory_array.sol

8 lines
206 B
Solidity

contract C {
function f(uint size) public {
uint[] memory x = new uint[]();
}
}
// ----
// TypeError 6160: (74-86): Wrong argument count for function call: 0 arguments given but expected 1.