To wit, this should work under the new semantics:
void fun() nothrow
{
scope(failure) { throw new Error("wowzers"); }
throw new Exception("so sue me");
}
This is because nothrow functions may still throw Error. This should work as well:
void fun() nothrow
{
scope(failure) assert(0);
throw new Exception("so sue me");
}