mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
7 lines
209 B
Kotlin
Vendored
7 lines
209 B
Kotlin
Vendored
class A(value: Int = 1)
|
|
|
|
fun box(): String {
|
|
val constructors = A::class.java.getConstructors().filter { !it.isSynthetic() }
|
|
return if (constructors.size == 2) "OK" else constructors.size.toString()
|
|
}
|