mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
18 lines
332 B
Plaintext
18 lines
332 B
Plaintext
|
{
|
||
|
function a() {}
|
||
|
function f() { g() }
|
||
|
function g() { revert(0, 0) }
|
||
|
function h() { stop() }
|
||
|
function i() { h() }
|
||
|
function j() { h() g() }
|
||
|
function k() { g() h() }
|
||
|
}
|
||
|
// ----
|
||
|
// a: can continue
|
||
|
// f: can revert
|
||
|
// g: can revert
|
||
|
// h: can terminate
|
||
|
// i: can terminate
|
||
|
// j: can terminate
|
||
|
// k: can revert
|