Unused symbol: do not search for internal member light methods

Use direct references search instead
So #KT-19811 Fixed
This commit is contained in:
Mikhail Glukhikh
2017-09-08 16:43:26 +03:00
committed by Mikhail Glukhikh
parent 4428798c61
commit 5c4e034171
4 changed files with 26 additions and 1 deletions
@@ -0,0 +1 @@
org.jetbrains.kotlin.idea.inspections.UnusedSymbolInspection
@@ -0,0 +1,9 @@
// PROBLEM: none
class Foo {
fun test() {
abacaba("")
}
internal fun <caret>abacaba(s: String): String = s
}