mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
14 lines
226 B
Kotlin
Vendored
14 lines
226 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
//ALLOW_AST_ACCESS
|
|
package test
|
|
|
|
annotation class Anno(val s: String)
|
|
|
|
interface T {
|
|
@Anno("foo")
|
|
fun foo(): Array<Array<Array<T>>>
|
|
|
|
@Anno("bar")
|
|
val bar: Array<Array<BooleanArray>>
|
|
}
|