aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/array/length/parentheses.sol
diff options
context:
space:
mode:
authorErik Kundt <bitshift@posteo.org>2018-05-16 23:18:30 +0800
committerErik Kundt <bitshift@posteo.org>2018-05-30 23:43:20 +0800
commit98d52beba3f989b3a5eeaba2d257de8de5df60a7 (patch)
tree32b6d25005a1e6585fac536a7d58660aadd6cc5c /test/libsolidity/syntaxTests/array/length/parentheses.sol
parent34b5eca1f8d9a8f04db20139601c6e944532f4e4 (diff)
downloaddexon-solidity-98d52beba3f989b3a5eeaba2d257de8de5df60a7.tar
dexon-solidity-98d52beba3f989b3a5eeaba2d257de8de5df60a7.tar.gz
dexon-solidity-98d52beba3f989b3a5eeaba2d257de8de5df60a7.tar.bz2
dexon-solidity-98d52beba3f989b3a5eeaba2d257de8de5df60a7.tar.lz
dexon-solidity-98d52beba3f989b3a5eeaba2d257de8de5df60a7.tar.xz
dexon-solidity-98d52beba3f989b3a5eeaba2d257de8de5df60a7.tar.zst
dexon-solidity-98d52beba3f989b3a5eeaba2d257de8de5df60a7.zip
Adds syntax tests, documentation and changelog entry.
Refines comment for array utility function.
Diffstat (limited to 'test/libsolidity/syntaxTests/array/length/parentheses.sol')
-rw-r--r--test/libsolidity/syntaxTests/array/length/parentheses.sol25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/libsolidity/syntaxTests/array/length/parentheses.sol b/test/libsolidity/syntaxTests/array/length/parentheses.sol
new file mode 100644
index 00000000..40f55ad6
--- /dev/null
+++ b/test/libsolidity/syntaxTests/array/length/parentheses.sol
@@ -0,0 +1,25 @@
+contract C {
+ uint constant L1 = (2);
+ uint constant L2 = ((2));
+ uint constant L3 = ((((2))));
+ uint constant L4 = (2 + 1);
+ uint constant L5 = ((2 + 1));
+ uint constant L6 = (((2) + ((1))));
+ uint constant L7 = (2 + 1) / 1;
+ uint constant L8 = (2 + ((1))) / (1);
+ uint[L1] a1;
+ uint[L2] a2;
+ uint[L3] a3;
+ uint[L4] a4;
+ uint[L5] a5;
+ uint[L6] a6;
+ uint[L7] a7;
+ uint[L8] a8;
+ uint[(2)] a9;
+ uint[(2 + 1)] a10;
+ uint[(2 + 1) + 1] a11;
+ uint[((2) + 1) + 1] a12;
+ uint[(2 + 1) + ((1))] a13;
+ uint[(((2) + 1)) + (((1)))] a14;
+ uint[((((2) + 1)) + (((1))))%1] a15;
+}