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