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