Files
openide/python/testData/debug/test_ref.py
Elizaveta Shashkova c92d58d54f Add test (PY-20526)
2016-08-23 21:01:39 +03:00

8 lines
69 B
Python

t = [1, 2]
def foo(l):
return len(l)
print(foo(t))
t.append(3)