mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
7 lines
214 B
Kotlin
Vendored
7 lines
214 B
Kotlin
Vendored
class A(value: Int = 1)
|
|
|
|
fun box(): String {
|
|
val constructors = javaClass<A>().getConstructors().filter { !it.isSynthetic() }
|
|
return if (constructors.size() == 2) "OK" else constructors.size().toString()
|
|
}
|