Files
kotlin/compiler/testData/codegen/boxWithStdlib/defaultArguments/constructor/checkIfConstructorIsSynthetic.kt
2016-01-22 05:54:38 +03:00

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()
}