(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test20656.d
// https://issues.dlang.org/show_bug.cgi?id=20656

import core.stdc.stdlib : free, malloc;

@live
void main()
{
    auto p = malloc(1);
    free(p);
    free(p);
}