mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
9 lines
275 B
D
9 lines
275 B
D
// first resolved as package, then created as module (with name package)
|
|
// COMPILED_IMPORTS: imports/pkgmod313/mod.d imports/pkgmod313/package.d
|
|
// REQUIRED_ARGS: -de
|
|
import imports.pkgmod313; // then imported as package module
|
|
|
|
void test()
|
|
{
|
|
imports.pkgmod313.foo();
|
|
}
|