Anyone know why calling the following in a MainActor class/func
MyTest.increment(1) { result in
NSLog("result=\(result)")
}
crashes (asserts) when building with Swift 6?
I get that its not happy that the completion is coming in on another dispatch_queue but it should complain about it at compile time, or ignore it at run time.