http://d.puremagic.com/issues/show_bug.cgi?id=8936
Summary: Throwing results in searching the whole directory tree
rooted in current directory
Product: D
Version: D2
Platform: All
OS/Version: Windows
Status: NEW
Severity: regression
Priority: P1
Component: druntime
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Denis Shelomovskij <[email protected]> 2012-11-02
17:11:54 MSK ---
This is catastrophic Windows druntime issue.
Triggering code:
---
void main()
{
throw new Exception("Ex"); // or Error, or any Throwable
// try throw new Exception("Ex"); catch { } // same here
}
---
Want something really long? Lunch this on Windows:
---
import std.file;
void main()
{
chdir(`C:\`);
try
// Let's serach the whole C: drive!
throw new Exception("Ex");
catch { }
}
---
Since dmd 2.060.
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------