solidity/test/libsolidity/syntaxTests/revertStatement/revert_revert.sol
2022-04-01 23:41:18 -05:00

9 lines
187 B
Solidity

error revert();
contract C {
function f() public pure {
revert revert();
}
}
// ----
// Warning 2319: (0-15='error revert();'): This declaration shadows a builtin symbol.