Try compiling this class:
class Foo {
public void Foo() {
if (!0)
throw new Exception();
}
}
The compiler will get an InternalError due to the expression "if (!0)".
class Foo {
public void Foo() {
if (!0)
throw new Exception();
}
}
The compiler will get an InternalError due to the expression "if (!0)".