blob: c3e8a78e98d7850f9f4eb063d4b6fe965bf6341b [file] [log] [blame]
module imports.test20023b;
auto threw()() @safe
{
try
throw new Exception("Hello");
catch (Exception e)
return e;
assert(0);
}