Files
kotlin-fork/idea/testData/multiModuleQuickFix/safeDeleteForbiddenFromActual/common/common.kt
T
Mikhail Glukhikh 7e0e7dc983 Unused symbol: remove forced "used" from actual declarations
Now we really check whether actual declaration has usages
(in expect or actual code) or not
Related to KT-17512
Related to KT-15666
2018-06-26 15:36:07 +03:00

7 lines
78 B
Kotlin
Vendored

expect class My constructor() {
fun foo()
}
fun test() {
My().foo()
}