9a4a3d1f49
^KT-56543 Merge-request: KT-MR-9299 Merged-by: Dmitrii Gridin <dmitry.gridin@jetbrains.com>
17 lines
300 B
Kotlin
Vendored
17 lines
300 B
Kotlin
Vendored
// IGNORE_REVERSED_RESOLVE
|
|
// FIR_IDENTICAL
|
|
class WithLateInit {
|
|
lateinit var x: String
|
|
|
|
fun init(xx: String) {
|
|
x = xx
|
|
}
|
|
|
|
init {
|
|
// This is obviously a bug,
|
|
// but with lateinit we explicitly want it to occur in runtime
|
|
use()
|
|
}
|
|
|
|
fun use() = x
|
|
} |