www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 6746] New: static this() inside struct skipped upon static method call

reply d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=6746

           Summary: static this() inside struct skipped upon static method
                    call
           Product: D
           Version: unspecified
          Platform: Other
        OS/Version: Mac OS X
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody puremagic.com
        ReportedBy: andrei metalanguage.com



09:40:03 PDT ---
A good example is given by core.time itself. Consider.

import core.time;

static this() {
    auto t = TickDuration.from!"msecs"(100);
}

void main(){}

This code aborts with a division by zero error. Apparently the call to the
static method TickDuration.from is allowed without the  trusted shared static
this() being called.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Sep 30 2011
parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=6746


Walter Bright <bugzilla digitalmars.com> changed:

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



20:23:18 PDT ---
https://github.com/D-Programming-Language/dmd/commit/42fea4c1f2beb5fa1a83c5cbb8a163d88d3ac3ad

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