Temporary fix to compile project with the snapshot compiler
The problem is in NI and can relate to a236ad5686
This commit is contained in:
+2
-2
@@ -360,8 +360,8 @@ private class IrUnboundSymbolReplacer(
|
||||
override fun visitBlock(expression: IrBlock): IrExpression {
|
||||
if (expression is IrReturnableBlock) {
|
||||
returnTargetStack.push(expression.symbol)
|
||||
try {
|
||||
return super.visitBlock(expression)
|
||||
return try {
|
||||
super.visitBlock(expression)
|
||||
} finally {
|
||||
returnTargetStack.pop()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user