aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-09-06 23:30:51 +0800
committerchriseth <chris@ethereum.org>2018-09-10 18:58:40 +0800
commit9f6a12eeb5b44d7e9de82864d89c98a2349fb929 (patch)
treef99f90303203d3edcfde35378302ac4e95f25bcb /test
parentb84a1b390b2a5cc495b32e8757cac7efde294cc9 (diff)
downloaddexon-solidity-9f6a12eeb5b44d7e9de82864d89c98a2349fb929.tar
dexon-solidity-9f6a12eeb5b44d7e9de82864d89c98a2349fb929.tar.gz
dexon-solidity-9f6a12eeb5b44d7e9de82864d89c98a2349fb929.tar.bz2
dexon-solidity-9f6a12eeb5b44d7e9de82864d89c98a2349fb929.tar.lz
dexon-solidity-9f6a12eeb5b44d7e9de82864d89c98a2349fb929.tar.xz
dexon-solidity-9f6a12eeb5b44d7e9de82864d89c98a2349fb929.tar.zst
dexon-solidity-9f6a12eeb5b44d7e9de82864d89c98a2349fb929.zip
Update bug description, add regex and tests.
Diffstat (limited to 'test')
-rw-r--r--test/buglist_test_vectors.md34
1 files changed, 34 insertions, 0 deletions
diff --git a/test/buglist_test_vectors.md b/test/buglist_test_vectors.md
index f15cf151..e683f481 100644
--- a/test/buglist_test_vectors.md
+++ b/test/buglist_test_vectors.md
@@ -68,6 +68,40 @@ function f() m(uint[2][2]) { }
function f() returns (uint, uint) { uint[2][2] memory x; }
+# ExpExponentCleanup
+
+## buggy
+
+x ** y
+
+--
+
+x ** uint8(y)
+
+--
+
+x**y
+
+## fine
+
+x ** 2
+
+--
+
+x**2
+
+--
+
+x**200
+
+--
+
+/** bla **/
+
+--
+
+/**/
+
# EventStructWrongData
## buggy