mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-05 08:31:31 +00:00
Remove unneeded asserts from JavaSupertypeResolver
Don't do anything special if a Java class happens to extend jet.JetObject: it's not a Kotlin class and we should collect all its supertypes correctly
This commit is contained in:
committed by
Alexander Udalov
parent
b2bcbdfb7a
commit
07f1e61146
@@ -0,0 +1,4 @@
|
||||
package test;
|
||||
|
||||
public class ClassExtendsTypeParameter<T> extends T {
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
public open class ClassExtendsTypeParameter</*0*/ T> : T {
|
||||
public constructor ClassExtendsTypeParameter</*0*/ T>()
|
||||
}
|
||||
Reference in New Issue
Block a user