// !CHECK_TYPE fun tryFinally(x: Int?) { try { } finally { x!! } checkSubtype(x) } fun tryCatchFinally(x: Int?) { try { x!! } catch (e: Exception) { x!! } finally { checkSubtype(x) x!! } checkSubtype(x) }