mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
16 lines
255 B
D
16 lines
255 B
D
/*
|
|
EXTRA_FILES: imports/dip22d.d imports/dip22e.d
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/dip22e.d(14): Error: undefined identifier `foo`, did you mean struct `Foo`?
|
|
---
|
|
*/
|
|
|
|
import imports.dip22d;
|
|
import imports.dip22e;
|
|
|
|
void test()
|
|
{
|
|
foo();
|
|
bar(12);
|
|
}
|