Files
kotlin-fork/idea/testData/multiModuleQuickFix/safeDeleteUsedInAnotherPlatform/jvm/jvm.kt
T
Mikhail Glukhikh eb92b7ed7f Unused symbol: don't suggest actual declaration used in another platform
Related to KT-17512
Related to KT-15666
2018-06-26 15:36:10 +03:00

8 lines
227 B
Kotlin
Vendored

// "Safe delete 'foo'" "false"
// TOOL: org.jetbrains.kotlin.idea.inspections.UnusedSymbolInspection
// ACTION: Convert member to extension
// ACTION: Move to companion object
actual class My {
actual fun <caret>foo() {}
}