mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
11 lines
181 B
Kotlin
11 lines
181 B
Kotlin
//ALLOW_AST_ACCESS
|
|
package test
|
|
|
|
annotation class A(val s: String)
|
|
|
|
class Outer {
|
|
class Nested([A("nested")] val x: String)
|
|
|
|
inner class Inner([A("inner")] val y: String)
|
|
}
|