www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 12204] New: using delegates as alias parameter to templated struct: cannot get frame pointer to sort

https://d.puremagic.com/issues/show_bug.cgi?id=12204

           Summary: using delegates as alias parameter to templated
                    struct:  cannot get frame pointer to sort
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody puremagic.com
        ReportedBy: tobias pankrath.net



PST ---
--
struct Set(alias less = "a < b", T)
{
    import std.algorithm;
    import std.functional;
    alias lessFun = binaryFun!(less);

    int[] someContents;
    this(R)(R r)
    {
        sort!(lessFun)(someContents);
    }
}

unittest {
    auto as2 = Set!((x,y) => x < y , int)([2, 1, 3]);
}
-- http://dpaste.dzfl.pl/af6cb1a8d8ab

It works, if I provide a normal function or a string lambda as 
'less'. However the code above results in the following error:

/d923/f233.d(11): Error: constructor 
f233.__unittestL15_3.Set!((x, y) => x < y, 
int).Set.__ctor!(int[]).this cannot get frame pointer to sort

What's wrong?



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