mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
11 lines
414 B
D
11 lines
414 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/test22361.d(11): Error: unable to read module `this_module_does_not_exist`
|
|
fail_compilation/test22361.d(11): Expected 'this_module_does_not_exist.d' or 'this_module_does_not_exist/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 this_module_does_not_exist;
|