solidity/test/libsolidity/syntaxTests/controlFlow/unreachableCode/double_revert.sol

9 lines
140 B
Solidity

contract C {
function f() public pure {
revert();
revert();
}
}
// ----
// Warning 5740: (70-78): Unreachable code.