inline tests

This commit is contained in:
David Halter
2013-01-07 20:20:02 +01:00
parent 8fbe1c47a5
commit 53a5bf6be8

8
test/refactor/inline.py Normal file
View File

@@ -0,0 +1,8 @@
# --- simple
def test():
#? 4
a = (30 + b, c) + 1
return test(100, a)
# +++
def test():
return test(100, (30 + b, c) + 1)