Update bug description, add regex and tests.

This commit is contained in:
chriseth
2018-09-10 12:58:40 +02:00
parent b84a1b390b
commit 9f6a12eeb5
3 changed files with 83 additions and 48 deletions
+34
View File
@@ -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