Files
kotlin-fork/idea/testData/multiModuleQuickFix/safeDeleteUsedInAnotherPlatform/js/js.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

7 lines
74 B
Kotlin
Vendored

actual class My {
actual fun foo() {}
}
fun test() {
My().foo()
}