solidity/test/libsolidity/syntaxTests/deprecated_functions.sol

13 lines
346 B
Solidity
Raw Normal View History

2018-04-20 00:52:50 +00:00
contract test {
function f() pure public {
2018-05-23 13:39:26 +00:00
bytes32 x = sha3("");
2018-04-20 00:52:50 +00:00
x;
}
function g() public {
suicide(payable(0x0000000000000000000000000000000000000001));
2018-04-20 00:52:50 +00:00
}
}
// ----
// TypeError 3557: (58-62): "sha3" has been deprecated in favour of "keccak256".
// TypeError 8050: (101-108): "suicide" has been deprecated in favour of "selfdestruct".