mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
14 lines
237 B
D
14 lines
237 B
D
// REQUIRED_ARGS: -de
|
|
// EXTRA_FILES: imports/fail20164.d
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail20164.d(13): Deprecation: module `imports.fail20164` is deprecated
|
|
---
|
|
*/
|
|
module fail20164;
|
|
|
|
void foo()
|
|
{
|
|
import imports.fail20164;
|
|
}
|