hey folks trying to do this in MPP (iOS): ``` actu...
# kotlin-native
i
hey folks trying to do this in MPP (iOS):
Copy code
actual constructor(longVal: Long) {
        delegate = NSDecimalNumber(longVal)
    }
Getting error about ambiguity, looking into the bindings see 2 constructors that looks identical:
Copy code
@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?
s
i
agh thx a lot!