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

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);
}