mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
15 lines
206 B
D
15 lines
206 B
D
// REQUIRED_ARGS: -de
|
|
// EXTRA_FILES: imports/test13582.d
|
|
module test13582b;
|
|
|
|
deprecated void foo()
|
|
{
|
|
import imports.test13582;
|
|
}
|
|
|
|
deprecated struct S
|
|
{
|
|
import imports.test13582;
|
|
}
|
|
|
|
void main() { }
|