4cc1e22a5a
In particular, support line markers for expect-class members and navigation to expect-class members from corresponding base members
9 lines
196 B
Kotlin
Vendored
9 lines
196 B
Kotlin
Vendored
package test
|
|
|
|
actual open class ExpectedChild : SimpleParent() {
|
|
actual override val bar: Int get() = 1
|
|
}
|
|
|
|
class ExpectedChildChildJvm : ExpectedChild() {
|
|
override val bar: Int get() = 1
|
|
} |