Bug 12396 – Regression: major breakage from new import rules
Status
RESOLVED
Resolution
FIXED
Severity
regression
Priority
P2
Component
dmd
Product
D
Version
D2
Platform
All
OS
All
Creation time
2014-03-17T20:39:00Z
Last change time
2014-03-24T00:21:11Z
Assigned to
nobody
Creator
bugzilla
Comments
Comment #0 by bugzilla — 2014-03-17T20:39:24Z
https://github.com/D-Programming-Language/dmd/pull/2256 has broken the following code:
a76.d: struct S { }
b76.d: struct S { }
test.d:
import a76;
import S = b76;
S.S s; // Error: a76.S at a76.d(1) conflicts with b76.S at b76.d(1)