Files
codeql/java/ql/test-kotlin1/library-tests/methods-mixed-java-and-kotlin/W.kt
2023-11-21 15:28:12 +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) {}
}