Files
codeql/java/ql/test/kotlin/library-tests/interface-delegate/intfDelegate.kt
2022-05-10 19:51:28 +01:00

11 lines
114 B
Kotlin

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