From 6facdcb7ea7d7969d17791f8b4b785e48b493f09 Mon Sep 17 00:00:00 2001 From: Dmitry Petrov Date: Wed, 7 Jun 2017 12:43:18 +0300 Subject: [PATCH] Minor: lambda arguments formatting --- .../box/functions/functionNtoStringNoReflect.kt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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.() {})