mirror of https://github.com/m-labs/artiq.git
13 lines
283 B
Python
13 lines
283 B
Python
# RUN: %python -m artiq.compiler.testbench.jit %s
|
|
|
|
lst = list(range(10))
|
|
assert lst[0] == 0
|
|
assert lst[1] == 1
|
|
assert lst[-1] == 9
|
|
assert lst[0:1] == [0]
|
|
assert lst[0:2] == [0, 1]
|
|
assert lst[0:10] == lst
|
|
assert lst[1:-1] == lst[1:9]
|
|
assert lst[0:1:2] == [0]
|
|
assert lst[0:2:2] == [0]
|