mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
Additional tests on reflection for Java methods
This commit is contained in:
17
compiler/testData/codegen/boxWithJava/reflection/javaMethodsSmokeTest/K.kt
vendored
Normal file
17
compiler/testData/codegen/boxWithJava/reflection/javaMethodsSmokeTest/K.kt
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
import kotlin.reflect.KFunction
|
||||
|
||||
// Initiate descriptor computation in reflection to ensure that nothing fails
|
||||
fun test(f: KFunction<*>) {
|
||||
f.parameters
|
||||
}
|
||||
|
||||
fun box(): String {
|
||||
test(J::simple)
|
||||
test(J::objectTypes)
|
||||
test(J::primitives)
|
||||
test(J::primitiveArrays)
|
||||
test(J::multiDimensionalArrays)
|
||||
test(J::wildcards)
|
||||
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user