mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
12 lines
221 B
D
12 lines
221 B
D
/*
|
|
EXTRA_FILES: imports/dip22b.d imports/dip22c.d
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/dip22b.d(12): Error: undefined identifier `Foo`, did you mean variable `foo`?
|
|
---
|
|
*/
|
|
module pkg.dip22;
|
|
|
|
import imports.dip22b;
|
|
|
|
Foo foo;
|