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/contractAddr.sol

7 lines
156 B

contract Foo {
function f() public {}
function echidna_address() public returns (bool) {
return address(this) == address(0x12342);
}
}