summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/tests/gc/path.asy
blob: 118826eba1041c545a28ede62bfb0b0317336889 (plain)
1
2
3
4
5
6
7
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;
}