Files
codeql/java/ql/integration-tests/all-platforms/kotlin/kotlin-interface-inherited-default/noforwards.kt
2022-10-28 10:53:45 +01:00

13 lines
130 B
Kotlin

interface NoForwards {
fun f() = 4
fun g(x: Int) = x
val x : Int
get() = 6
}
class RealNoForwards : NoForwards { }