mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
15 lines
314 B
D
15 lines
314 B
D
// REQUIRED_ARGS: -de
|
|
// EXTRA_FILES: imports/a17630.d
|
|
// EXTRA_SOURCES: imports/b17630.d
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail17630.d(13): Error: module `a17630` import `Erase` not found, did you mean variable `b17630.Erase`?
|
|
---
|
|
*/
|
|
|
|
void main()
|
|
{
|
|
import imports.a17630 : Erase;
|
|
assert(Erase == 2);
|
|
}
|