Files
codeql/java/ql/test-kotlin1/library-tests/interface-delegate/intfDelegate.kt
2023-11-21 15:28:12 +00:00

11 lines
114 B
Kotlin

interface Intf {
fun f(i: Int)
}
class Concrete : Intf by object : Intf {
override fun f(i: Int) { }
} {
}