(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
runnable/
test16640.d
// PERMUTE_ARGS:

void testFileFullPathAsDefaultArgument(string preBakedFileFullPath, string fileFullPath = __FILE_FULL_PATH__)
{
    assert(preBakedFileFullPath == fileFullPath);
}

void main()
{
    testFileFullPathAsDefaultArgument(__FILE_FULL_PATH__);
}