dmd/compiler/test/fail_compilation/test143.d
2022-07-09 18:53:07 +02:00

21 lines
283 B
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);
}