aboutsummaryrefslogtreecommitdiffstats
path: root/test/buglist_test_vectors.md
diff options
context:
space:
mode:
Diffstat (limited to 'test/buglist_test_vectors.md')
-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