mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
11 lines
183 B
Kotlin
Vendored
11 lines
183 B
Kotlin
Vendored
//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)
|
|
}
|