diff options
author | Damien George <damien.p.george@gmail.com> | 2017-02-17 12:30:27 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-02-17 12:30:27 +1100 |
commit | d87c6b676855a8f19586e7ac637fe5f1dbc31cbc (patch) | |
tree | 77cfa8ea33596393da74be9b4e7e512873bbb4cb /tests/basics/string_join.py | |
parent | c889f01b8d72cb72dd4a8c627c43cd5f66c3d4d9 (diff) |
tests/basics/string_join: Add more tests for string concatenation.
Diffstat (limited to 'tests/basics/string_join.py')
-rw-r--r-- | tests/basics/string_join.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/basics/string_join.py b/tests/basics/string_join.py index b8694c01e..4a2e9aa91 100644 --- a/tests/basics/string_join.py +++ b/tests/basics/string_join.py @@ -25,3 +25,13 @@ except TypeError: # joined by the compiler print("a" "b") +print("a" '''b''') +print("a" # inline comment + "b") +print("a" \ + "b") + +# the following should not be joined by the compiler +x = 'a' +'b' +print(x) |