blob: b3073ee63a17d03f968ed172e4fbb4859bae8a03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/*
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;
|