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

7 lines
244 B
Solidity
Raw Normal View History

contract c {
function f(uint a) public { uint8[-1] x; }
}
// ----
// TypeError: (51-53): Array with negative length specified.
2020-05-14 17:02:45 +00:00
// TypeError: (45-56): Data location must be "storage", "memory" or "calldata" for variable, but none was given.