mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
12 lines
267 B
D
12 lines
267 B
D
// REQUIRED_ARGS: -de
|
|
// EXTRA_FILES: imports/a314.d imports/c314.d
|
|
module imports.test314; // package imports
|
|
|
|
import imports.a314;
|
|
|
|
void main()
|
|
{
|
|
imports.a314.bug("This should work.\n");
|
|
renamed.bug("This should work.\n");
|
|
bug("This should work.\n");
|
|
}
|