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

9 lines
135 B
Solidity
Raw Normal View History

2019-01-08 18:33:46 +00:00
contract C {
function f() public pure {
revert();
revert();
}
}
// ----
// Warning: (70-78): Unreachable code.