mirror of https://github.com/crytic/echidna
commit
fe0af9926c
@ -0,0 +1,14 @@ |
||||
contract C { |
||||
bool state = true; |
||||
function f() public { |
||||
D a = new D(); |
||||
D b = new D(); |
||||
state = false; |
||||
} |
||||
|
||||
function echidna_construct() public returns (bool) { |
||||
return state; |
||||
} |
||||
} |
||||
|
||||
contract D {} |
Loading…
Reference in new issue