6204e43f3f
^KT-54890
17 lines
224 B
Kotlin
Vendored
17 lines
224 B
Kotlin
Vendored
// FILE: Derived.kt
|
|
|
|
class Derived : Some()
|
|
|
|
// FILE: Some.java
|
|
|
|
public class Some implements Strange {
|
|
public Object foo() {
|
|
return "";
|
|
}
|
|
}
|
|
|
|
// FILE: Strange.kt
|
|
|
|
interface Strange<out T> {
|
|
fun foo(): T
|
|
} |