Skip to content
Snippets Groups Projects
Commit d87c6b67 authored by Damien George's avatar Damien George
Browse files

tests/basics/string_join: Add more tests for string concatenation.

parent c889f01b
No related branches found
No related tags found
No related merge requests found
...@@ -25,3 +25,13 @@ except TypeError: ...@@ -25,3 +25,13 @@ except TypeError:
# joined by the compiler # joined by the compiler
print("a" "b") 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)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment