Files
codeql/java/ql/test-kotlin2/library-tests/methods-mixed-java-and-kotlin/W.kt
2023-11-17 14:07:13 +00:00

9 lines
107 B
Kotlin

package k
interface A<T> {
fun foo(t: T)
}
class B : A<String> {
override fun foo(t: String) {}
}