mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
12 lines
248 B
Kotlin
Vendored
12 lines
248 B
Kotlin
Vendored
import kotlin.reflect.*
|
|
import kotlin.reflect.jvm.*
|
|
import kotlin.reflect.full.*
|
|
|
|
class Test<T> {
|
|
fun test() {
|
|
Test::class.allSupertypes
|
|
Test::class.createType(listOf(KTypeProjection.STAR))
|
|
this::test.javaMethod
|
|
}
|
|
}
|