Files
kotlin/compiler/testData/loadJava/compiledKotlin/annotations/parameters/InnerClassConstructor.kt
2015-06-12 09:23:31 +03:00

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)
}