mirror of
https://github.com/github/codeql.git
synced 2025-12-21 19:26:31 +01:00
17 lines
188 B
Kotlin
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 { }
|