Does somebody know why these lines crash in Xcode ...
# ios
r
Does somebody know why these lines crash in Xcode 11.4.1?
Copy code
let thisIsAKotlinInt: Any = KotlinInt(int: 3)
XCTAssertEqual(thisIsAKotlinInt as? KotlinInt, KotlinInt(int: 3))
n
Kotlin < 1.3.70?
r
yes, let me quickly check what happens when switching
😱 that solved it
you're the best!!!
thank you!
n