Thread overview
[Issue 402] New: compiler crash with mixin and forward reference
Oct 06, 2006
d-bugmail
Oct 06, 2006
Thomas Kuehne
Oct 10, 2006
d-bugmail
October 06, 2006
http://d.puremagic.com/issues/show_bug.cgi?id=402

           Summary: compiler crash with mixin and forward reference
           Product: D
           Version: 0.168
          Platform: PC
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: digitalmars-com@baysmith.com


The following may be incorrect code, but it crashes the compiler.

>dmd -c issue.d
issue.d(8): mixin Foo!(y) cannot resolve forward reference
***** Crash *****

----- issue.d -----
template Foo(alias b)
{
    int a() { return b; }
}

void main()
{
    mixin Foo!(y) y;
}


-- 

October 06, 2006
d-bugmail@puremagic.com schrieb am 2006-10-06:
> http://d.puremagic.com/issues/show_bug.cgi?id=402

> The following may be incorrect code, but it crashes the compiler.
>
>>dmd -c issue.d
> issue.d(8): mixin Foo!(y) cannot resolve forward reference
> ***** Crash *****
>
> ----- issue.d -----
> template Foo(alias b)
> {
>     int a() { return b; }
> }
>
> void main()
> {
>     mixin Foo!(y) y;
> }

Added to DStress as http://dstress.kuehne.cn/nocompile/a/alias_39_A.d http://dstress.kuehne.cn/nocompile/a/alias_39_B.d

Thomas


October 10, 2006
http://d.puremagic.com/issues/show_bug.cgi?id=402


bugzilla@digitalmars.com changed:

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




------- Comment #2 from bugzilla@digitalmars.com  2006-10-10 03:31 -------
Fixed DMD 0.169


--