798a6bf689
Initializers for properties with nullable types are analyzed with binding context common for all declarations. This can cause invalid elements are left in the cache guarded with out-of-block modification tracker. This workaround forces increment for such cases.
4 lines
61 B
Kotlin
4 lines
61 B
Kotlin
// TRUE
|
|
class Test {
|
|
val a : () -> Int = { <caret>pri }
|
|
} |