(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
runnable/
imports/
test45a.d
module imports.test45a;

import core.stdc.stdio;

int foo()
{
    printf("foo()\n");
    return 1;
}


int bar(T)(T t)
{
    printf("bar(t)\n");
    return 3;
}