blob: c95ecc111faa37ad9a3341c2ca75da59c6ff164e [file] [log] [blame]
// REQUIRED_ARGS: -de
// https://issues.dlang.org/show_bug.cgi?id=143
// EXTRA_FILES: imports/test143.d
/*
TEST_OUTPUT:
---
fail_compilation/test143.d(19): Error: undefined identifier `x`
---
*/
module test143;
import imports.test143;
void bar(int)
{
}
void foo()
{
bar(x);
}