08b62d3564
Adjust test data Use new util in FindUsagesMultiModuleTest
21 lines
500 B
Kotlin
Vendored
21 lines
500 B
Kotlin
Vendored
package test
|
|
|
|
open class SimpleParent {
|
|
open fun foo(n: Int) {}
|
|
}
|
|
|
|
expect open class ExpectedChild : SimpleParent {
|
|
override fun <caret>foo(n: Int)
|
|
}
|
|
|
|
class ExpectedChildChild : ExpectedChild() {
|
|
override fun foo(n: Int) {}
|
|
}
|
|
|
|
class SimpleChild : SimpleParent() {
|
|
override fun foo(n: Int) {}
|
|
}
|
|
|
|
// REF: [testModule_Common] (in test.ExpectedChildChild).foo(Int)
|
|
// REF: [testModule_JVM] (in test.ExpectedChild).foo(Int)
|
|
// REF: [testModule_JVM] (in test.ExpectedChildChildJvm).foo(Int) |