aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/globalFunctions/suicide_no_call.sol
blob: bf3f5ebc84a15f196f3f0ee3ec5f0d27255b07d1 (plain) (blame)
1
2
3
4
5
6
7
8
contract C
{
    function f(bytes memory data) public pure {
        suicide;
    }
}
// ----
// TypeError: (60-67): "suicide" has been deprecated in favour of "selfdestruct"