ddbg 0.3

Robin Allen r.a3 at ntlworld.com
Wed Feb 28 08:13:50 PST 2007


import std.stdio;

void main(char[][] args)
{
	try
	{
		throw new Exception("Hello");
	}
	catch(Exception e)
	{
		writefln(e.msg);
	}
}

---

Ddbg breaks with an 'unhandled exception' here, even though the 
exception is handled!

-Rob


More information about the Digitalmars-d-debugger mailing list