``` void bar() { throw new Exception(""); }
void foo() nothrow { scope(failure) {} bar(); } void main() {} ``` Doesn't compile with 2.066: ``` source/app.d(9): Error: 'app.bar' is not nothrowsource/app.d(6): Error: function 'app.foo' is nothrow yet may throw
```