2018-06-04 11:54:32 +00:00
|
|
|
contract C {
|
|
|
|
function f() public {
|
|
|
|
address(this).transfer(1);
|
|
|
|
require(address(this).send(2));
|
|
|
|
selfdestruct(address(this));
|
2018-08-15 21:30:09 +00:00
|
|
|
(bool success,) = address(this).delegatecall("");
|
|
|
|
require(success);
|
|
|
|
(success,) = address(this).call("");
|
|
|
|
require(success);
|
2018-06-04 11:54:32 +00:00
|
|
|
}
|
|
|
|
function g() pure public {
|
|
|
|
bytes32 x = keccak256("abc");
|
|
|
|
bytes32 y = sha256("abc");
|
2018-08-06 12:59:37 +00:00
|
|
|
address z = ecrecover(bytes32(uint256(1)), uint8(2), bytes32(uint256(3)), bytes32(uint256(4)));
|
2018-06-04 11:54:32 +00:00
|
|
|
require(true);
|
|
|
|
assert(true);
|
|
|
|
x; y; z;
|
|
|
|
}
|
2019-09-09 16:22:02 +00:00
|
|
|
receive() payable external {}
|
2018-06-04 11:54:32 +00:00
|
|
|
}
|