[Issue 6651] New: [SafeD] Exception/Throwable constructors are not @safe ?
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Mon Sep 12 06:17:46 PDT 2011
http://d.puremagic.com/issues/show_bug.cgi?id=6651
Summary: [SafeD] Exception/Throwable constructors are not @safe
?
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: druntime
AssignedTo: nobody at puremagic.com
ReportedBy: dmitry.olsh at gmail.com
--- Comment #0 from Dmitry Olshansky <dmitry.olsh at gmail.com> 2011-09-12 06:17:30 PDT ---
@safe class NewException : Exception
{
///
this(string msg, string file = __FILE__, size_t line = __LINE__)
{
super(msg, file, line);
}
}
Results in:
safe.d(7): Error: safe function 'this' cannot call system function 'this'
The funny thing is that Exception still can be created/thrown in @safe
functions, e.g. this compiles:
@safe void f()
{
new Exception("blah");
}
--
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