7e0e7dc983
Now we really check whether actual declaration has usages (in expect or actual code) or not Related to KT-17512 Related to KT-15666
7 lines
78 B
Kotlin
Vendored
7 lines
78 B
Kotlin
Vendored
expect class My constructor() {
|
|
fun foo()
|
|
}
|
|
|
|
fun test() {
|
|
My().foo()
|
|
} |