mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-11 18:33:14 +01:00
10 lines
118 B
D
10 lines
118 B
D
module tangotests.gc2;
|
|
|
|
import tango.core.Memory;
|
|
|
|
void main()
|
|
{
|
|
char[] tmp = new char[2500];
|
|
GC.collect();
|
|
}
|