[Issue 5008] Bizarre "conflicts with __anonymous at" error with regex and indirectly imported phobos
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Tue Feb 14 06:04:31 PST 2012
http://d.puremagic.com/issues/show_bug.cgi?id=5008
dawg at dawgfoto.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
CC| |dawg at dawgfoto.de
Resolution| |WORKSFORME
--- Comment #1 from dawg at dawgfoto.de 2012-02-14 06:04:30 PST ---
cat > a.d << CODE
module a;
import std.regex;
import b;
void main()
{
replace("hello", regex("X"), "Y");
}
CODE
cat > b.d << CODE
module b;
public import std.string;
public import std.array;
CODE
dmd -c a.d b.d
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list