The following code works as expected on Apple platforms but crashes on Linux: ```swift import Foundation var chars = CharacterSet.alphanumerics.inverted chars.remove("-") ``` Note that this is specifically a result of using the `inverted` property.