www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 2239] New: Template instantiation failure when template parameter type passed as template parameter.

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

           Summary: Template instantiation failure when template parameter
                    type passed as template parameter.
           Product: D
           Version: 2.018
          Platform: PC
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla digitalmars.com
        ReportedBy: simen.kjaras gmail.com


struct foo(T, T a) {}

void bar(T, T a)(foo!(T, a) f) {}

void main()
{
        foo!(float, 0) f;
        bar!(float, 0)(f); // cannot implicitly convert expression (f) of type
foo!(float,0) to foo!(float,A)
}

If a's type is instead set in the template definition, this compiles correctly.


-- 
Jul 21 2008
parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=2239


Simen Kjaeraas <simen.kjaras gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |DUPLICATE



PDT ---
*** This issue has been marked as a duplicate of issue 2372 ***

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jun 17 2010