aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/parsing/arrays_in_storage.sol
diff options
context:
space:
mode:
authorErik Kundt <bitshift@posteo.org>2018-09-22 06:18:22 +0800
committerErik Kundt <bitshift@posteo.org>2018-09-22 06:25:52 +0800
commitd821cbdff5a483b3f7a7bd07758bf5e11a7cd762 (patch)
tree8e6a7c5c5da3d62c811f432f0c6fb6fa0b5728e9 /test/libsolidity/syntaxTests/parsing/arrays_in_storage.sol
parentff5be1799088ca51fb51e9c86031bd2d88fe3bce (diff)
downloaddexon-solidity-d821cbdff5a483b3f7a7bd07758bf5e11a7cd762.tar.gz
dexon-solidity-d821cbdff5a483b3f7a7bd07758bf5e11a7cd762.tar.zst
dexon-solidity-d821cbdff5a483b3f7a7bd07758bf5e11a7cd762.zip
Moves length check to reference resolver.
Diffstat (limited to 'test/libsolidity/syntaxTests/parsing/arrays_in_storage.sol')
-rw-r--r--test/libsolidity/syntaxTests/parsing/arrays_in_storage.sol2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libsolidity/syntaxTests/parsing/arrays_in_storage.sol b/test/libsolidity/syntaxTests/parsing/arrays_in_storage.sol
index 9181222e..9adf6f12 100644
--- a/test/libsolidity/syntaxTests/parsing/arrays_in_storage.sol
+++ b/test/libsolidity/syntaxTests/parsing/arrays_in_storage.sol
@@ -1,6 +1,6 @@
contract c {
uint[10] a;
uint[] a2;
- struct x { uint[2**20] b; y[0] c; }
+ struct x { uint[2**20] b; y[1] c; }
struct y { uint d; mapping(uint=>x)[] e; }
}