Files
kotlin-fork/plugins/noarg/noarg-cli/testData/box/nestedClass.kt
T
Alexander Udalov 25c228297a JVM IR: support noarg compiler plugin
#KT-41265 Fixed
2020-12-04 22:12:58 +01:00

15 lines
183 B
Kotlin
Vendored

// WITH_RUNTIME
annotation class NoArg
class Outer {
@NoArg
class Nested(val a: String)
}
fun box(): String {
Outer.Nested::class.java.newInstance()
return "OK"
}