summaryrefslogtreecommitdiff
path: root/graphics/asymptote/tests/gc/array.asy
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/tests/gc/array.asy')
-rw-r--r--graphics/asymptote/tests/gc/array.asy5
1 files changed, 5 insertions, 0 deletions
diff --git a/graphics/asymptote/tests/gc/array.asy b/graphics/asymptote/tests/gc/array.asy
new file mode 100644
index 0000000000..43e3f9224c
--- /dev/null
+++ b/graphics/asymptote/tests/gc/array.asy
@@ -0,0 +1,5 @@
+real[] a;
+for (int i = 0; i < 1e9; ++i)
+{
+ a=new real[10];
+}