aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/array/multi_dim_zero_length.sol
blob: 2f487cde79c24692ab4b1809259aa8844ad5f818 (plain) (blame)
1
2
3
4
5
6
contract C {
  bytes[0] a;
  function f() public pure returns(bytes32[0][500] memory) {}
}
// ----
// TypeError: (62-84): Fixed-size multidimensional arrays are not allowed to have zero length.