Commit f28f9a93 authored by Vitja Makarov's avatar Vitja Makarov

Unreachable code tests

parent 3f6f0a2c
# mode: error
# tag: werror
def simple_return():
return
print 'Where am I?'
def simple_loops(*args):
for i in args:
continue
print 'Never be here'
while True:
break
print 'Never be here'
def conditional(a, b):
if a:
return 1
elif b:
return 2
else:
return 3
print 'oops'
_ERRORS = """
6:4: Unreachable code
11:8: Unreachable code
15:8: Unreachable code
24:4: Unreachable code
"""
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