mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
In particular, support line markers for expect-class members and navigation to expect-class members from corresponding base members
11 lines
517 B
Kotlin
Vendored
11 lines
517 B
Kotlin
Vendored
package test
|
|
|
|
actual open class <lineMarker><lineMarker>ExpectedChild</lineMarker></lineMarker> : SimpleParent() {
|
|
actual override fun <lineMarker><lineMarker><lineMarker>foo</lineMarker></lineMarker></lineMarker>(n: Int) {}
|
|
actual override val <lineMarker><lineMarker><lineMarker>bar</lineMarker></lineMarker></lineMarker>: Int get() = 1
|
|
}
|
|
|
|
class ExpectedChildChildJvm : ExpectedChild() {
|
|
override fun <lineMarker>foo</lineMarker>(n: Int) {}
|
|
override val <lineMarker>bar</lineMarker>: Int get() = 1
|
|
} |