Avoid generation of redundant toArray stubs

#KT-13698 In Progress
This commit is contained in:
Denis Zharkov
2016-10-05 15:53:23 +03:00
parent e05e0ec921
commit 6e838f0adc
8 changed files with 48 additions and 15 deletions

View File

@@ -0,0 +1,14 @@
// 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>()