(root)/
gcc-13.2.0/
gcc/
testsuite/
gdc.test/
fail_compilation/
test143.d
// REQUIRED_ARGS: -de
// https://issues.dlang.org/show_bug.cgi?id=143
// EXTRA_FILES: imports/test143.d
/*
TEST_OUTPUT:
---
fail_compilation/test143.d(20): Error: undefined identifier `x`
---
*/
module test143;

import imports.test143;

void bar(int)
{
}

void foo()
{
    bar(x);
}