www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 8668] New: public selective import makes functions conflict when otherwise they don't

reply d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=8668

           Summary: public selective import makes functions conflict when
                    otherwise they don't
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody puremagic.com
        ReportedBy: dmitry.olsh gmail.com



06:19:29 PDT ---
Selective import is quite rotten. Continuing where I left with 8667 I've found
another issue now with public selective import:

Again given a few simple modules:

module m;

void split(T)(T k)
    if(is(T : string))
{
}


module m2;

void split(T)(T k)
    if(is(T : int))
{
}

//drop in another one to pull split from m2
module m3;

public import m2: split;

//and the one to call them...
import m;
import m3; //replace with m2 to make it work

void main(){
    split("abc");
    split(123);
}

Compiling this all together yeilds an output that suggest that 2 templates are
in conflict:

tryit.d(5): Error: m.split(T) if (is(T : string)) at m.d(3) conflicts with
m3.sp
lit at m3.d(3)
tryit.d(6): Error: template m.split does not match any function template
declara
tion
tryit.d(6): Error: template m.split(T) if (is(T : string)) cannot deduce
templat
e function from argument types !()(int)

DMD 2.060 been there since at least 2.056.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Sep 16 2012
next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=8668


Kenji Hara <k.hara.pg gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |pull, rejects-valid



https://github.com/D-Programming-Language/dmd/pull/1449

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jan 08 2013
prev sibling next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=8668


Kenji Hara <k.hara.pg gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |andrei erdani.com



*** Issue 8035 has been marked as a duplicate of this issue. ***

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jan 08 2013
prev sibling next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=8668


Kenji Hara <k.hara.pg gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |TDPL



From bug 8035:
----
import std.regex, std.string;

void main() {
    split(s"hello", regex("[ \t,.;:?]+"));
}
----

This is a TDPL issue at p.18 (http://erdani.com/tdpl/errata/).

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jan 08 2013
prev sibling next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=8668




Commits pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/b35e7e0b7f2df76869a79c032a48ab641b18ff85
fix Issue 8668 - public selective import makes functions conflict when
otherwise they don't

https://github.com/D-Programming-Language/dmd/commit/e2df8c552a92ecc6f722a50de5a043fa94bdd69e


Issue 8668 - public selective import makes functions conflict when otherwise
they don't

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Mar 03 2013
prev sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=8668


Walter Bright <bugzilla digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |bugzilla digitalmars.com
         Resolution|                            |FIXED


-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Mar 03 2013