s.swift 171 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 infix operator •: AdditionPrecedence func • (a: Int, b: Int) -> Int { return a * b } @inline(never) func g(a: Int) -> Int{ return a + 1 } let i = g(a: 1 • 2)