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