mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
11 lines
303 B
D
11 lines
303 B
D
/*
|
|
EXTRA_FILES: test5412c2.di imports/test5412a.d
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/test5412c.d(11): Error: import `test5412c.test5412c2` conflicts with import `test5412c.test5412c2` at fail_compilation/test5412c.d(10)
|
|
---
|
|
*/
|
|
module test5412c;
|
|
|
|
import test5412c2 = imports.test5412a;
|
|
import test5412c2;
|