// WITH_RUNTIME fun test(): List { return mutableSetOf(1, 2, 3).asSequence().filter { it > 1 }.map { it * 2 }.toList() }