Fix nullable variables spilling in coroutines
See the last comment in testData for clarification #KT-18983 Fixed
This commit is contained in:
+3
@@ -57,6 +57,9 @@ open class StrictBasicValue(type: Type?) : BasicValue(type) {
|
||||
|
||||
other as StrictBasicValue
|
||||
|
||||
if (this === NULL_VALUE) return other === NULL_VALUE
|
||||
if (other === NULL_VALUE) return this === NULL_VALUE
|
||||
|
||||
if (type != other.type) return false
|
||||
|
||||
return true
|
||||
|
||||
Reference in New Issue
Block a user