summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/tests/gc/string.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/asymptote/tests/gc/string.asy')
-rw-r--r--Build/source/utils/asymptote/tests/gc/string.asy6
1 files changed, 6 insertions, 0 deletions
diff --git a/Build/source/utils/asymptote/tests/gc/string.asy b/Build/source/utils/asymptote/tests/gc/string.asy
new file mode 100644
index 00000000000..f379b862249
--- /dev/null
+++ b/Build/source/utils/asymptote/tests/gc/string.asy
@@ -0,0 +1,6 @@
+string a="abc";
+for (int i = 0; i < 1e7; ++i)
+{
+ "a"+"b";
+ a=reverse(a);
+}