aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/viewPureChecker/builtin_functions.sol
blob: e4be73c627a069df0bfac2212ff786975471eaf4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
contract C {
    function f() public {
        address(this).transfer(1);
        require(address(this).send(2));
        selfdestruct(address(this));
        require(address(this).delegatecall(""));
        require(address(this).call(""));
    }
    function g() pure public {
        bytes32 x = keccak256("abc");
        bytes32 y = sha256("abc");
        address z = ecrecover(bytes32(1), uint8(2), bytes32(3), bytes32(4));
        require(true);
        assert(true);
        x; y; z;
    }
    function() payable public {}
}