Files
codeql/java/ql/test/kotlin/library-tests/methods-mixed-java-and-kotlin/W.kt
2022-05-10 19:51:14 +01:00

9 lines
107 B
Kotlin

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