// WITH_STDLIB // TARGET_BACKEND: JVM object Test { fun test() = { createWildcard("OK") }.let { it() } @JvmStatic private fun createWildcard(s: String) = Type(s).x class Type(val x: String) } fun box() = Test.test()