Files
2022-06-07 14:12:16 +00:00

12 lines
147 B
Kotlin
Vendored

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