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