Going back to my problems with types :slightly_smi...
# kotlin-native
k
Going back to my problems with types 🙂 Is there any way to have compiled interface to be [UInt8] and not [MyLibInt]? I tried also with val myVal: List<Int>; and in primary constructor: MyClass(myVal: List<Int>), but it still compiled to [MyLibInt]
s
No, because in most cases it is either not correct or not important, as we discussed earlier.
👍 1