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