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

11 lines
174 B
Solidity

contract C {
error E();
uint x = 2;
function f() public {
revert E();
x = 4;
}
}
// ----
// Warning 5740: (98-103='x = 4'): Unreachable code.