If you define a prefix /
operator and use it inside parentheses, the indentation is incorrect when starting a new line:
prefix operator /
prefix func / (a: Int) -> Int { a }
func f(_ int: Int) -> Int { int }
let y: Int = f(/1)
print(y)
^ Automatic indentation from Xcode