Ethereum smart contract fuzzer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
echidna/tests/solidity/basic/construct.sol

14 lines
214 B

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 {}