Commit c2157cb4 authored by Stefan Behnel's avatar Stefan Behnel

test fix after extending dead code removal

parent 355e708b
def _runtime_True():
return True
return 'bar' return 'bar'
class A: class A:
...@@ -19,20 +22,20 @@ for i in (1,2): ...@@ -19,20 +22,20 @@ for i in (1,2):
while True: while True:
return None return None
if True: if _runtime_True():
return None return None
else: else:
return None return None
_ERRORS = u''' _ERRORS = u'''
2:0: Return not inside a function body 5:0: Return not inside a function body
5:4: Return not inside a function body
8:4: Return not inside a function body 8:4: Return not inside a function body
10:5: Return not inside a function body 11:4: Return not inside a function body
13:5: Return not inside a function body 13:5: Return not inside a function body
17:4: Return not inside a function body 16:5: Return not inside a function body
20:4: Return not inside a function body 20:4: Return not inside a function body
23:4: Return not inside a function body 23:4: Return not inside a function body
25:4: Return not inside a function body 26:4: Return not inside a function body
28:4: Return not inside a function body
''' '''
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment