Bug 4299 – compile stopped with flag unittest in typecons.d , depending on the order files
Status
RESOLVED
Resolution
DUPLICATE
Severity
normal
Priority
P2
Component
dmd
Product
D
Version
D2
Platform
x86
OS
Windows
Creation time
2010-06-10T03:56:00Z
Last change time
2015-06-09T05:13:45Z
Assigned to
nobody
Creator
pavel
Comments
Comment #0 by pavel — 2010-06-10T03:56:19Z
uses dmd2 version 2.046 , windows vista, ubuntu 10.10
first file:
module one;
import std.string;
second file:
import std.stdio;
int main(string[] args)
{
int[] a = [1,2,3,4];
writeln(a);
}
compile:
dmd one.d main.d -oftest -unittest -> stopped in typecons.d
but this is ok:
dmd main.d one.d -oftest - unitest
Comment #1 by simen.kjaras — 2010-06-10T05:51:52Z
*** This issue has been marked as a duplicate of issue 4003 ***