solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/266_invalid_args_creating_memory_array.sol

9 lines
252 B
Solidity

contract C {
function f(uint size) public {
var x = new uint[]();
}
}
// ----
// Warning: (56-61): Use of the "var" keyword is deprecated.
// TypeError: (64-76): Wrong argument count for function call: 0 arguments given but expected 1.