mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
13 lines
315 B
Kotlin
Vendored
13 lines
315 B
Kotlin
Vendored
// !CHECK_HIGHLIGHTING
|
|
|
|
package test
|
|
|
|
actual open class ExpectedChild : SimpleParent() {
|
|
actual override fun `foo fun`(n: Int) {}
|
|
actual override val `bar fun`: Int get() = 1
|
|
}
|
|
|
|
class ExpectedChildChildJvm : ExpectedChild() {
|
|
override fun `foo fun`(n: Int) {}
|
|
override val `bar fun`: Int get() = 1
|
|
} |