1
0
forked from M-Labs/artiq
artiq/artiq/test/lit/integration/str.py
2018-04-20 15:27:27 +00:00

11 lines
190 B
Python

# RUN: %python -m artiq.compiler.testbench.jit %s
# RUN: %python %s
assert "xy" == "xy"
assert not ("xy" == "xz")
assert "xy" != "xz"
assert not ("xy" != "xy")
assert ("x" + "y") == "xy"