aboutsummaryrefslogtreecommitdiffstats
path: root/test6
diff options
context:
space:
mode:
Diffstat (limited to 'test6')
-rw-r--r--test610
1 files changed, 10 insertions, 0 deletions
diff --git a/test6 b/test6
new file mode 100644
index 0000000..bc17de2
--- /dev/null
+++ b/test6
@@ -0,0 +1,10 @@
+# test6
+# used to fix memory leak in setting defined strings
+
+test = "hello"
+test = "fail"
+a = test
+test = "acd"
+
+print(a)
+print(test)