Thread overview
[Issue 3343] New: Crash by "auto main(){}"
Sep 25, 2009
Haruki Shigemori
Sep 25, 2009
Don
Oct 13, 2009
Walter Bright
September 25, 2009
http://d.puremagic.com/issues/show_bug.cgi?id=3343

           Summary: Crash by "auto main(){}"
           Product: D
           Version: 2.032
          Platform: Other
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody@puremagic.com
        ReportedBy: rayerd.wiz@gmail.com


--- Comment #0 from Haruki Shigemori <rayerd.wiz@gmail.com> 2009-09-25 04:58:18 PDT ---
It is simple bug.

auto main(){}

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
September 25, 2009
http://d.puremagic.com/issues/show_bug.cgi?id=3343


Don <clugdbug@yahoo.com.au> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |patch
                 CC|                            |clugdbug@yahoo.com.au


--- Comment #1 from Don <clugdbug@yahoo.com.au> 2009-09-25 05:06:43 PDT ---
(In reply to comment #0)
> It is simple bug.
> 
> auto main(){}

It has a simple patch. func.c, line 567 (DMD 2.032):

        default:
        goto Lmainerr;
    }

+    if (!f->nextOf())
+        error("must return int or void");
+    else
    if (f->nextOf()->ty != Tint32 && f->nextOf()->ty != Tvoid)
        error("must return int or void, not %s", f->nextOf()->toChars());

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
October 13, 2009
http://d.puremagic.com/issues/show_bug.cgi?id=3343


Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |bugzilla@digitalmars.com
         Resolution|                            |FIXED


--- Comment #2 from Walter Bright <bugzilla@digitalmars.com> 2009-10-13 13:48:09 PDT ---
Fixed dmd 1.049 and 2.034

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