Make property java available on KClass<T> where T is type parameter without upper bounds.
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package
|
||||
|
||||
public inline fun </*0*/ reified X> test1(): java.lang.Class<X>
|
||||
public inline fun </*0*/ reified X : kotlin.Any> test2(): java.lang.Class<X>
|
||||
public inline fun </*0*/ reified X> test3(): java.lang.Class<X>
|
||||
public inline fun </*0*/ reified X : kotlin.Number> test4(): java.lang.Class<X>
|
||||
public inline fun </*0*/ reified X : kotlin.Number?> test5(): java.lang.Class<X>
|
||||
public fun test6(): java.lang.Class<out A!>
|
||||
public fun test7(): java.lang.Class<A!>
|
||||
|
||||
public open class A {
|
||||
public constructor A()
|
||||
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
|
||||
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
|
||||
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
|
||||
|
||||
// Static members
|
||||
public open fun getA(): A!
|
||||
public open fun getKClass(): kotlin.reflect.KClass<A!>!
|
||||
}
|
||||
Reference in New Issue
Block a user