summaryrefslogtreecommitdiff
path: root/test.lang
blob: d4614398edf9ff1e289e363e24c472887558ae78 (plain)
1
2
3
4
5
6
7
8
9
10
11
func main(a, b i64) i64 {
	let x i64, y bool
	if a < b {
		let t = a
		a := b
		b := t
	} else {
		x := 2
	}
	return (a + b) + x
}