http://d.puremagic.com/issues/show_bug.cgi?id=6918

           Summary: Internal error: e2ir.c 1242
           Product: D
           Version: D2
          Platform: Other
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nob...@puremagic.com
        ReportedBy: tob...@pankrath.net


--- Comment #0 from Tobias Pankrath <tob...@pankrath.net> 2011-11-09 02:37:54 
PST ---
I'd say, I found another compiler bug.

-----------------
import std.stdio;

template Struct(alias bar)
{
    struct S
    {
        void foo()
        {
            FancyFunc!(this, bar).fn();
        }
    }
}
template FancyFunc(alias context, alias f)
{
    void fn()
    {
        writeln("before");
        f(context);
        writeln("after");
    }
}
void bar(CT)(CT context)
{
    writeln(CT.stringof);
}
void main()
{
    alias Struct!(bar).S MyStruct;
    MyStruct s = MyStruct();
    s.foo();
}
----------------------

Compile it with dmd and dmd will print:

> Internal error: e2ir.c 1242

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

Reply via email to