// TARGET_BACKEND: JVM // WITH_STDLIB // FULL_JDK package pack import java.util.regex.Pattern class C{ public fun foo(){ val items : Collection = listOf(Item()) val result = ArrayList() val pattern: Pattern? = Pattern.compile("...") items.filterTo(result) { pattern!!.matcher(it.name())!!.matches() } } private fun Item.name() : String = "" } class Item{ } fun box() : String { C().foo() return "OK" }