summaryrefslogtreecommitdiff
path: root/test/tools/opt-viewer/Inputs/unicode-function-name/s.swift
blob: 6347cde51e49ab2c677acf7526f946a2f13f2118 (plain)
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)