Files
kotlin/compiler/testData/loadJava/compiledKotlin/annotations/MultiDimensionalArrayMethod.kt
Alexander Udalov 0202217135 Fix JVM signatures involving multi-dimensional array types
Apparently ASM's Type#getElementType returns the type of the array even if it's
multi-dimensional, so the loop was incorrect
2015-04-07 20:06:23 +03:00

13 lines
194 B
Kotlin

//ALLOW_AST_ACCESS
package test
annotation class Anno(val s: String)
trait T {
Anno("foo")
fun foo(): Array<Array<Array<T>>>
Anno("bar")
val bar: Array<Array<BooleanArray>>
}