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

8 lines
180 B
Solidity
Raw Normal View History

contract C {
function f() pure public {
throw;
}
}
// ----
// SyntaxError 4538: (52-57): "throw" is deprecated in favour of "revert()", "require()" and "assert()".