D issues are now tracked on GitHub. This Bugzilla instance remains as a read-only archive.
Issue 4299 - compile stopped with flag unittest in typecons.d , depending on the order files
Summary: compile stopped with flag unittest in typecons.d , depending on the order files
Status: RESOLVED DUPLICATE of issue 4003
Alias: None
Product: D
Classification: Unclassified
Component: dmd (show other issues)
Version: D2
Hardware: x86 Windows
: P2 normal
Assignee: No Owner
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-06-10 03:56 UTC by pavel
Modified: 2015-06-09 05:13 UTC (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this issue.
Description pavel 2010-06-10 03:56:19 UTC
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 Simen Kjaeraas 2010-06-10 05:51:52 UTC

*** This issue has been marked as a duplicate of issue 4003 ***