aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/constants/mulmod_zero.sol
diff options
context:
space:
mode:
authorDaniel Kirchner <daniel@ekpyron.org>2018-04-09 21:22:45 +0800
committerDaniel Kirchner <daniel@ekpyron.org>2018-04-12 03:17:10 +0800
commitdaa69df447e167fe75d57a5bbbabee4d637218a4 (patch)
tree06651c92bf79cbc14a931d28fc161ad480997506 /test/libsolidity/syntaxTests/constants/mulmod_zero.sol
parent418e2725b50aebc169dd80f78a0ce3eefc2e296e (diff)
downloaddexon-solidity-daa69df447e167fe75d57a5bbbabee4d637218a4.tar.gz
dexon-solidity-daa69df447e167fe75d57a5bbbabee4d637218a4.tar.zst
dexon-solidity-daa69df447e167fe75d57a5bbbabee4d637218a4.zip
Error on invalid arithmetic with constant expressions.
Diffstat (limited to 'test/libsolidity/syntaxTests/constants/mulmod_zero.sol')
-rw-r--r--test/libsolidity/syntaxTests/constants/mulmod_zero.sol11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/libsolidity/syntaxTests/constants/mulmod_zero.sol b/test/libsolidity/syntaxTests/constants/mulmod_zero.sol
new file mode 100644
index 00000000..856d01eb
--- /dev/null
+++ b/test/libsolidity/syntaxTests/constants/mulmod_zero.sol
@@ -0,0 +1,11 @@
+contract c {
+ uint constant a1 = 0;
+ uint constant a2 = 1;
+ uint constant b1 = mulmod(3, 4, 0);
+ uint constant b2 = mulmod(3, 4, a1);
+ uint constant b3 = mulmod(3, 4, a2 - 1);
+}
+// ----
+// TypeError: (88-103): Arithmetic modulo zero.
+// TypeError: (128-144): Arithmetic modulo zero.
+// TypeError: (169-189): Arithmetic modulo zero.