summaryrefslogtreecommitdiff
path: root/graphics/asymptote/tests/gc/path.asy
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/tests/gc/path.asy')
-rw-r--r--graphics/asymptote/tests/gc/path.asy8
1 files changed, 8 insertions, 0 deletions
diff --git a/graphics/asymptote/tests/gc/path.asy b/graphics/asymptote/tests/gc/path.asy
new file mode 100644
index 0000000000..118826eba1
--- /dev/null
+++ b/graphics/asymptote/tests/gc/path.asy
@@ -0,0 +1,8 @@
+guide a;
+for (int i = 0; i < 1e7; ++i)
+{
+// guide a=a--(1.0,2.0);
+ path p=(1.0,2.0);
+ path q=(3.0,4.0);
+ path a=p--q;
+}