Commit missing part of b4e3c30d.

This commit is contained in:
whitequark 2018-04-20 15:27:27 +00:00
parent d11f66291c
commit 4c65fb79b9
1 changed files with 5 additions and 0 deletions

View File

@ -2,4 +2,9 @@
# RUN: %python %s
assert "xy" == "xy"
assert not ("xy" == "xz")
assert "xy" != "xz"
assert not ("xy" != "xy")
assert ("x" + "y") == "xy"