(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
runnable/
test41.d
// EXTRA_SOURCES: imports/test41a.d
// PERMUTE_ARGS: -inline -g -O

import imports.test41a;
import core.exception;

int main()
{
    try
    {
        foo();
        return 1;
    }
    catch (AssertError e)
    {
    }

    try
    {
        func!(void)();
        return 1;
    }
    catch (AssertError e)
    {
    }

    return 0;
}