Files
kotlin-fork/idea/testData/inspectionsLocal/unusedSymbol/internal.kt
T
Mikhail Glukhikh 5c4e034171 Unused symbol: do not search for internal member light methods
Use direct references search instead
So #KT-19811 Fixed
2017-09-11 12:12:16 +03:00

10 lines
131 B
Kotlin
Vendored

// PROBLEM: none
class Foo {
fun test() {
abacaba("")
}
internal fun <caret>abacaba(s: String): String = s
}