mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
12 lines
393 B
D
12 lines
393 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/diag10327.d(12): Error: unable to read module `test10327`
|
|
fail_compilation/diag10327.d(12): Expected 'imports/test10327.d' or 'imports/test10327/package.d' in one of the following import paths:
|
|
import path[0] = fail_compilation
|
|
import path[1] = $p:druntime/import$
|
|
import path[2] = $p:phobos$
|
|
---
|
|
*/
|
|
|
|
import imports.test10327; // package.d missing
|