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

12 lines
148 B
Kotlin
Vendored

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