aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/deprecated_functions.sol
blob: 99ca4542306666edb7148dfdf7284c26e3eab725 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                  
                                   


                             
                                                                    


         
                                                                          
                                                                                 
contract test {
    function f() pure public {
        bytes32 x = sha3();
        x;
    }
    function g() public {
        suicide(0x0000000000000000000000000000000000000001);
    }
}
// ----
// TypeError: (58-64): "sha3" has been deprecated in favour of "keccak256"
// TypeError: (99-150): "suicide" has been deprecated in favour of "selfdestruct"