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

17 lines
188 B
Kotlin

interface Test {
fun f() = 1
fun g(x: Int) = x
val x : Int
get() = 3
}
class Real : Test { }
interface MiddleInterface : Test { }
class RealIndirect : MiddleInterface { }