solidity/test/libyul/controlFlowSideEffects/leave.yul
2021-10-14 17:46:07 +02:00

14 lines
168 B
Plaintext

{
function a() {
revert(0, 0)
leave
}
function b() {
leave
revert(0, 0)
}
}
// ----
// a: can revert
// b: can continue