mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Update bug description, add regex and tests.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user