mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-13 14:36:18 +03:00
9 lines
118 B
D
9 lines
118 B
D
module tangotests.gc2;
|
|
|
|
import tango.core.Memory;
|
|
|
|
void main()
|
|
{
|
|
char[] tmp = new char[2500];
|
|
GC.collect();
|
|
}
|