15 lines
182 B
Kotlin
Vendored
15 lines
182 B
Kotlin
Vendored
// WITH_STDLIB
|
|
|
|
annotation class NoArg
|
|
|
|
class Outer {
|
|
@NoArg
|
|
class Nested(val a: String)
|
|
}
|
|
|
|
fun box(): String {
|
|
Outer.Nested::class.java.newInstance()
|
|
|
|
return "OK"
|
|
}
|