solidity/test/libsolidity/semanticTests/reverts/revert.sol

24 lines
312 B
Solidity
Raw Normal View History

contract C {
uint256 public a = 42;
function f() public {
a = 1;
revert();
}
function g() public {
a = 1;
assembly {
revert(0, 0)
}
}
}
// ====
// compileViaYul: also
// ----
// f() -> FAILURE
// a() -> 42
// g() -> FAILURE
// a() -> 42