ivan.savytskyi
03/04/2019, 4:36 PMactual constructor(longVal: Long) {
delegate = NSDecimalNumber(longVal)
}
Getting error about ambiguity, looking into the bindings see 2 constructors that looks identical:
@kotlinx.cinterop.ObjCConstructor public constructor(long: kotlin.Long) { /* compiled code */ }
@kotlinx.cinterop.ObjCConstructor public constructor(longLong: kotlin.Long) { /* compiled code */ }
Is it a bug, or there something I missing?svyatoslav.scherbina
03/05/2019, 7:17 AMivan.savytskyi
03/05/2019, 2:28 PM