Files
kotlin-fork/plugins/noarg/noarg-cli/testData/box/kt18667.kt
T

14 lines
224 B
Kotlin
Vendored

// WITH_RUNTIME
annotation class NoArg
@NoArg
class Foo(val s1: String) {
val s2: String = ""
val l: List<String> = listOf()
}
fun box(): String {
val instance = Foo::class.java.newInstance()
return "OK"
}