// TARGET_BACKEND: JVM // FULL_JDK // WITH_STDLIB fun MutableSet.foo(s: CharSequence): Set { s.also(::add) return this } fun box(): String = mutableSetOf().foo("OK").single() as String