mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
16 lines
265 B
Kotlin
Vendored
16 lines
265 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
// FILE: test/JavaClass.java
|
|
package test;
|
|
|
|
public abstract class JavaClass<T> implements A<T> {
|
|
|
|
}
|
|
|
|
// FILE: main.kt
|
|
package test
|
|
|
|
interface A<T> : Collection<T>
|
|
|
|
// There must be toArray methods in B
|
|
abstract class B<E> : JavaClass<E>()
|