mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
11 lines
114 B
Kotlin
11 lines
114 B
Kotlin
interface Intf {
|
|
|
|
fun f(i: Int)
|
|
|
|
}
|
|
|
|
class Concrete : Intf by object : Intf {
|
|
override fun f(i: Int) { }
|
|
} {
|
|
}
|