b6f724cf58
#KT-9759 Fixed
8 lines
125 B
Kotlin
Vendored
8 lines
125 B
Kotlin
Vendored
// FILE: XYZ.java
|
|
public interface XYZ<X extends X> {
|
|
XYZ foo() {}
|
|
}
|
|
|
|
// FILE: main.kt
|
|
|
|
fun main(xyz: XYZ<*>) = xyz.foo() |