mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
14 lines
339 B
D
14 lines
339 B
D
/*
|
|
REQUIRED_ARGS: fail_compilation/ice24188_a/ice24188_c.d
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice24188.d(9): Error: module `ice24188_c` from file fail_compilation/ice24188_a/ice24188_c.d must be imported with 'import ice24188_c;'
|
|
---
|
|
*/
|
|
auto b() {
|
|
import fail_compilation.ice24188_a.ice24188_c : D;
|
|
|
|
struct A {
|
|
D e;
|
|
}
|
|
}
|