blob: 9ed89920e62fda72ef0ce9b3850bdb1d43f84b21 (
plain)
1
2
3
4
5
6
7
8
9
|
// 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();
}
|