Files
codeql/java/ql/test-kotlin2/library-tests/interface-delegate/intfDelegate.kt
2023-11-17 14:07:13 +00:00

11 lines
114 B
Kotlin

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