Files
kotlin-fork/j2k/tests/testData/ast/function/override.kt
T

8 lines
78 B
Kotlin

class A {
fun a() {
}
}
class B : A() {
override fun a() {
}
}