Files
codeql/java/ql/test-kotlin1/library-tests/inherited-default-value/test.kt
2023-11-21 15:28:12 +00:00

14 lines
127 B
Kotlin

open class A {
open fun f(x: Int = 0) = x
}
class B : A() {
override fun f(x: Int) = x + 1
fun user() = this.f()
}