Re: [swift-users] Swift 3 segmentation error 11
Hi – I think you’re hitting a bug that was fixed recently. There was a missing default for this particular combination’s slice type, which then interacted quite unpleasantly with a compiler bug to cause a crash. Can you try it with the latest Xcode beta? In the mean-time, adding the following t
[swift-users] Swift 3 segmentation error 11
The following code generates a segmentation error: extension Int { static prefix func++(i:Int)->Int{ return i+1; } static prefix func--(i:Int)->Int{