// ERROR: Null can not be a value of a non-null type kotlin.String // ERROR: Null can not be a value of a non-null type kotlin.String import java.util.* internal class A { fun foo() { val list = listOf(null) val set = setOf(null) } }