solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/427_throw_is_deprecated_v050.sol

9 lines
205 B
Solidity

pragma experimental "v0.5.0";
contract C {
function f() pure public {
throw;
}
}
// ----
// SyntaxError: (82-87): "throw" is deprecated in favour of "revert()", "require()" and "assert()".