solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/151_array_with_negative_length.sol

6 lines
131 B
Solidity

contract c {
function f(uint a) public { uint8[-1] x; }
}
// ----
// TypeError: (51-53): Array with negative length specified.