mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
11 lines
290 B
D
11 lines
290 B
D
// EXTRA_SOURCES: imports/fail4479.d
|
|
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/diag4479.d(10): Error: module `imports.fail4479mod` from file fail_compilation/imports/fail4479.d must be imported with 'import imports.fail4479mod;'
|
|
---
|
|
*/
|
|
|
|
module diag4479;
|
|
import imports.fail4479;
|
|
void main() { }
|