aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/array/multi_dim_zero_length.sol
diff options
context:
space:
mode:
Diffstat (limited to 'test/libsolidity/syntaxTests/array/multi_dim_zero_length.sol')
-rw-r--r--test/libsolidity/syntaxTests/array/multi_dim_zero_length.sol6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/libsolidity/syntaxTests/array/multi_dim_zero_length.sol b/test/libsolidity/syntaxTests/array/multi_dim_zero_length.sol
new file mode 100644
index 00000000..2f487cde
--- /dev/null
+++ b/test/libsolidity/syntaxTests/array/multi_dim_zero_length.sol
@@ -0,0 +1,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.