You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following code works in full D, but not in -betterC.
voidfunc() nothrow {
if (0) {
thrownewException(""); // Error: cannot use `throw` statements with -betterC
}
}
This ticket is not necessarily for this exact snippet, but may be implying issues with dmd's glue code, not replicating the logic in blockexit.d for if statements.