// "Remove single lambda parameter declaration" "false" // ACTION: Move lambda argument into parentheses // ACTION: Rename to _ // ACTION: Specify explicit lambda signature // ACTION: Specify type explicitly // ACTION: Convert to anonymous function // ACTION: Convert to multi-line lambda // ACTION: Enable a trailing comma by default in the formatter // RUNTIME_WITH_FULL_JDK fun main() { mapOf(1 to 2).forEach { t, u -> println(t) } }