aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/426_throw_is_deprecated.sol
blob: 24f36c5b6f006987159007d5fc9fcb44520f0c8b (plain) (blame)
1
2
3
4
5
6
7
contract C {
    function f() pure public {
        throw;
    }
}
// ----
// SyntaxError: (52-57): "throw" is deprecated in favour of "revert()", "require()" and "assert()".