Files
kotlin/plugins/noarg/noarg-cli/testData/box/simple.kt

15 lines
222 B
Kotlin
Vendored

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