[Issue 13375] Linking failure when importing both std.regex and std.algorithm

via Digitalmars-d-bugs digitalmars-d-bugs at puremagic.com
Mon Aug 25 12:42:14 PDT 2014


https://issues.dlang.org/show_bug.cgi?id=13375

Cody Casterline <cody.casterline at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |cody.casterline at gmail.com

--- Comment #1 from Cody Casterline <cody.casterline at gmail.com> ---
Not able to reproduce that on my end: 

$ cat foo.d
import std.regex;
import std.algorithm;

void foo(string bar) {
    split(bar, regex("_"));
    int[] test ;
    test.sort();
  }

void main(){}
$ rdmd --force foo.d
$ rdmd --version
rdmd build 20140224
[...]



What version are you using?

--


More information about the Digitalmars-d-bugs mailing list