(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
compilable/
test1.d
// PERMUTE_ARGS:
// EXTRA_FILES: imports/test1imp.d
class File
{
    import imports.test1imp;

    static char[] read(char[] name)
    {
	DWORD size;	// DWORD is defined in test1imp
	return null;
    }

}