Files
kotlin-fork/idea/testData/multiModuleFindUsages/findCommonClassFromActual/common/common.kt
T
Mikhail Glukhikh e885e54233 Implement search from expect element in KotlinReferenceSearcher
So mostly #KT-17512 Fixed
2018-06-26 15:36:06 +03:00

8 lines
100 B
Kotlin
Vendored

fun test() {
My("a").boo()
My("b").boo()
}
expect class My(val s: String) {
fun boo()
}