solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/426_throw_is_deprecated.sol

8 lines
175 B
Solidity
Raw Normal View History

contract C {
function f() pure public {
throw;
}
}
// ----
2018-07-11 14:06:31 +00:00
// SyntaxError: (52-57): "throw" is deprecated in favour of "revert()", "require()" and "assert()".