8cb8284957
Fixes KT-40115 & KT-40117. Move FlexibleNullability annotation to 'kotlin.internal.ir'.
6 lines
178 B
Kotlin
Vendored
6 lines
178 B
Kotlin
Vendored
// Test to ensure that we mark the backing field of a lateinit property
|
|
// as NotNull, even though the field is nullable in the JVM IR backend.
|
|
class A {
|
|
lateinit var x: A
|
|
}
|