blob: 1a1ed70698bf3a0dd6fea1d4168c0e2e910ca9e5 [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(20): Error: undefined identifier `x`
---
*/
module test143;
import imports.test143;
void bar(int)
{
}
void foo()
{
bar(x);
}