diff --git a/compiler/testData/codegen/box/functions/functionNtoStringNoReflect.kt b/compiler/testData/codegen/box/functions/functionNtoStringNoReflect.kt index 86b6223c050..d1ee567b648 100644 --- a/compiler/testData/codegen/box/functions/functionNtoStringNoReflect.kt +++ b/compiler/testData/codegen/box/functions/functionNtoStringNoReflect.kt @@ -8,14 +8,14 @@ fun check(expected: String, obj: Any?) { } fun box(): String { - check("Function0") - { -> } - check("Function0") - { -> 42 } + check("Function0", + { -> }) + check("Function0", + { -> 42 }) check("Function1", fun (s: String) = 42.toLong()) - check("Function2") - { x: Int, y: Int -> } + check("Function2", + { x: Int, y: Int -> }) check("Function1", fun Int.() {})