// ERROR: None of the following functions can be called with the arguments supplied: public fun listOf(): kotlin.List defined in kotlin public fun listOf(vararg values: kotlin.String): kotlin.List defined in kotlin public fun listOf(value: kotlin.String): kotlin.List defined in kotlin // ERROR: None of the following functions can be called with the arguments supplied: public fun setOf(): kotlin.Set defined in kotlin public fun setOf(vararg values: kotlin.String): kotlin.Set defined in kotlin public fun setOf(value: kotlin.String): kotlin.Set defined in kotlin import java.util.* class A { fun foo() { val list = listOf(null) val set = setOf(null) } }