Thread overview
[Issue 4321] New: Passing local parameter to non-global template fails.
Jun 15, 2010
ibrahim YANIKLAR
Nov 27, 2010
ibrahim YANIKLAR
Nov 27, 2011
Trass3r
June 15, 2010
http://d.puremagic.com/issues/show_bug.cgi?id=4321

           Summary: Passing local parameter to non-global template fails.
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody@puremagic.com
        ReportedBy: yanikibo@gmail.com
        Depends on: 3052


--- Comment #0 from ibrahim YANIKLAR <yanikibo@gmail.com> 2010-06-15 06:50:17 PDT ---
class C
{
    void f(int i)()
    {
    }

    void g()
    {
        foreach (i; Range!(1,10))
            f!(i)();
    }
}


Error: template instance cannot use local 'i' as parameter to non-global
template f(uint i)

I think it should work.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
November 27, 2010
http://d.puremagic.com/issues/show_bug.cgi?id=4321


ibrahim YANIKLAR <yanikibo@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|nobody@puremagic.com        |bugzilla@digitalmars.com


--- Comment #1 from ibrahim YANIKLAR <yanikibo@gmail.com> 2010-11-27 10:37:15 PST ---
The code below works:

class C
{
    void f(int i)()
    {
    }

    void g()
    {
        foreach (i; Range!(1,10))
            h!(i)(this);
    }
}

void h(int i)(C c)
{
    c.f!(i)();
}

Probably that is only a compiler limitation and can be fixed (or removed)
without much effort.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
November 27, 2011
http://d.puremagic.com/issues/show_bug.cgi?id=4321


Trass3r <mrmocool@gmx.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |mrmocool@gmx.de
         Resolution|                            |WORKSFORME


--- Comment #2 from Trass3r <mrmocool@gmx.de> 2011-11-27 12:35:53 PST ---
Works now.

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