3291cf7a6e
This is needed for compatibility with the JVM backend.
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
|
|
}
|