mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
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
|
|
}
|