Files
kotlin-fork/idea/testData/inspections/unusedSymbol/function/conventionalNames.kt
T
Evgeny Gerashchenko 4b20435ec9 Not searching for functions with conventional names.
Reasons:
1. They kind of implement interface.
2. They are too expensive to search.
2015-01-22 15:20:25 +03:00

34 lines
292 B
Kotlin

// all these are unused, but have conventional names, so they won't be marked as unused
fun inc() {
}
fun dec() {
}
fun component1() {
}
fun component100() {
}
fun equals() {
}
fun invoke() {
}
fun iterator() {
}
fun compareTo() {
}
fun get() {
}
fun set() {
}
fun plusAssign() {
}