diff options
author | chriseth <chris@ethereum.org> | 2018-09-06 23:30:51 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-09-10 18:58:40 +0800 |
commit | 9f6a12eeb5b44d7e9de82864d89c98a2349fb929 (patch) | |
tree | f99f90303203d3edcfde35378302ac4e95f25bcb /test/buglist_test_vectors.md | |
parent | b84a1b390b2a5cc495b32e8757cac7efde294cc9 (diff) | |
download | dexon-solidity-9f6a12eeb5b44d7e9de82864d89c98a2349fb929.tar.gz dexon-solidity-9f6a12eeb5b44d7e9de82864d89c98a2349fb929.tar.zst dexon-solidity-9f6a12eeb5b44d7e9de82864d89c98a2349fb929.zip |
Update bug description, add regex and tests.
Diffstat (limited to 'test/buglist_test_vectors.md')
-rw-r--r-- | test/buglist_test_vectors.md | 34 |
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 |