summary refs log tree commit diff stats
path: root/tests/js/tstrconcat.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/js/tstrconcat.nim')
-rw-r--r--tests/js/tstrconcat.nim5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/js/tstrconcat.nim b/tests/js/tstrconcat.nim
deleted file mode 100644
index 37c8db687..000000000
--- a/tests/js/tstrconcat.nim
+++ /dev/null
@@ -1,5 +0,0 @@
-var x: string
-var y = "foo"
-add(x, y)
-y[0] = 'm'
-doAssert y == "moo" and x == "foo"