From 073845ebd441e641f68e70782b27298271b8db95 Mon Sep 17 00:00:00 2001 From: Valentin Kipyatkov Date: Thu, 15 Sep 2016 22:14:40 +0300 Subject: [PATCH] Fixed test data --- .../lambdaWithLambdaAsParam.kt.after | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idea/testData/intentions/specifyExplicitLambdaSignature/lambdaWithLambdaAsParam.kt.after b/idea/testData/intentions/specifyExplicitLambdaSignature/lambdaWithLambdaAsParam.kt.after index f829687af69..39db29c8a41 100644 --- a/idea/testData/intentions/specifyExplicitLambdaSignature/lambdaWithLambdaAsParam.kt.after +++ b/idea/testData/intentions/specifyExplicitLambdaSignature/lambdaWithLambdaAsParam.kt.after @@ -4,5 +4,5 @@ public class TestingUse { } fun main() { - val funcInfunc = TestingUse().test6({ f: (Int) -> Int -> f(5) > 20}, { x -> x + 2}) + val funcInfunc = TestingUse().test6({ f: (x: Int) -> Int -> f(5) > 20}, { x -> x + 2}) }