[Issue 6746] New: static this() inside struct skipped upon static method call
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Fri Sep 30 09:40:45 PDT 2011
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 at puremagic.com
ReportedBy: andrei at metalanguage.com
--- Comment #0 from Andrei Alexandrescu <andrei at metalanguage.com> 2011-09-30 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: -------
More information about the Digitalmars-d-bugs
mailing list