From 021fb14c779ca5bcda0cfe76a0c18ddcae6d664a Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Thu, 19 Jan 2012 17:13:37 +0400 Subject: [PATCH] KT-1065 No completion between function name and call brackets --- idea/testData/completion/basic/InCallExpression.kt | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 idea/testData/completion/basic/InCallExpression.kt diff --git a/idea/testData/completion/basic/InCallExpression.kt b/idea/testData/completion/basic/InCallExpression.kt new file mode 100644 index 00000000000..3d8347cfd30 --- /dev/null +++ b/idea/testData/completion/basic/InCallExpression.kt @@ -0,0 +1,13 @@ +package something + +class SomeTempClass { + fun testSome() { + + } + + fun test() { + test() + } +} + +// EXIST: test, testSome \ No newline at end of file