// WITH_STDLIB // ISSUE: KT-54668 interface A { val list: List } fun getA(): A? = null val x by lazy { (getA() ?: error("error")).list.associateBy { it } }