solidity/test/libsolidity/syntaxTests/deprecated_functions.sol

13 lines
325 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(0x0000000000000000000000000000000000000001);
2018-04-20 00:52:50 +00:00
}
}
// ----
2018-05-23 13:39:26 +00:00
// TypeError: (58-66): "sha3" has been deprecated in favour of "keccak256"
// TypeError: (101-152): "suicide" has been deprecated in favour of "selfdestruct"