Disallow space between @ and attribute name in Swift 6 mode Not having a space between @ and the attribute name (or even having them on different lines) is weird and shouldn’t be allowed Disallo...
private (set) var context: Context // Extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode I am curious about why this is an error in Swift 6 language mode? Is there is a technical reason for it?
Motivation I get a warning in XCode 16 about code like this: private (set) var messagesEnabled : Bool = false @objc (addInfo:) public func add(info : CDDeviceInfo) Where I get "Extraneous whit...