solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/430_bare_selfdestruct.sol

6 lines
116 B
Solidity
Raw Normal View History

contract C {
function f() pure public { selfdestruct; }
}
// ----
// Warning: (44-56): Statement has no effect.