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