Change default upper bound of Java type parameters to Any!
#KT-7672 Fixed
This commit is contained in:
Vendored
+2
-2
@@ -2,8 +2,8 @@ package
|
||||
|
||||
package p {
|
||||
|
||||
public open class Base</*0*/ T> {
|
||||
public constructor Base</*0*/ T>()
|
||||
public open class Base</*0*/ T : kotlin.Any!> {
|
||||
public constructor Base</*0*/ T : kotlin.Any!>()
|
||||
public/*package*/ open fun coll(/*0*/ r: kotlin.(Mutable)Collection<*>!): kotlin.Unit
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
|
||||
Reference in New Issue
Block a user