From 0abb2edb2be1f65532ef6598e168dc86be483076 Mon Sep 17 00:00:00 2001 From: Valentin Kipyatkov Date: Tue, 13 Sep 2016 13:08:13 +0300 Subject: [PATCH] Corrected test --- idea/testData/parameterInfo/functionCall/Invoke.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idea/testData/parameterInfo/functionCall/Invoke.kt b/idea/testData/parameterInfo/functionCall/Invoke.kt index b483a0356f7..4c95b257943 100644 --- a/idea/testData/parameterInfo/functionCall/Invoke.kt +++ b/idea/testData/parameterInfo/functionCall/Invoke.kt @@ -1,7 +1,7 @@ package test class A { - fun invoke(i: Int) { + operator fun invoke(i: Int) { } }