From 7fabfd8771c3b4f7e0cbefe9e8d446cda2db90b0 Mon Sep 17 00:00:00 2001 From: Svetlana Isakova Date: Mon, 2 Sep 2013 19:27:24 +0400 Subject: [PATCH] test data fixed temporary when ambiguity inner calls are not completed --- .../tests/inference/cannotCompleteResolveNoInfoForParameter.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/testData/diagnostics/tests/inference/cannotCompleteResolveNoInfoForParameter.kt b/compiler/testData/diagnostics/tests/inference/cannotCompleteResolveNoInfoForParameter.kt index 1cacf692c67..41553b5f207 100644 --- a/compiler/testData/diagnostics/tests/inference/cannotCompleteResolveNoInfoForParameter.kt +++ b/compiler/testData/diagnostics/tests/inference/cannotCompleteResolveNoInfoForParameter.kt @@ -4,7 +4,7 @@ fun f(i: Int, c: Collection) fun f(a: Any, l: List): Collection {throw Exception()} fun test(l: List) { - f(1, emptyList()) + f(1, emptyList()) } fun emptyList(): List {throw Exception()}