def nested(cond): if cond: if inline(cond_1): return 3 else: return 2 else: if inline(cond_1): return 1 else: return 0
def nested(): if inline(cond_0): if inline(cond_1): return 3 else: return 2 else: if inline(cond_1): return 1 else: return 0
def basic(): if inline(cond): return 0 else: return 1
def foo(x): if inline(y): return x + 1 else: return x - 1