blob: 5df1483a284ffc0de2b6dab881bc432250bda7c5 [file] [log] [blame]
// https://issues.dlang.org/show_bug.cgi?id=20567
import core.memory;
void main()
{
auto stats = GC.profileStats();
assert(stats.numCollections == 0);
char[] sbuf = new char[256]; // small pool
char[] lbuf = new char[2049]; // large pool
stats = GC.profileStats();
assert(stats.numCollections == 0);
}