12 lines
103 B
Python
12 lines
103 B
Python
# Error
|
|
assert True
|
|
|
|
def fn():
|
|
x = 1
|
|
|
|
# Error
|
|
assert x == 1
|
|
|
|
# Error
|
|
assert x == 2
|