summaryrefslogtreecommitdiff
path: root/test.lang
blob: 2d3c42d80de3d1799f5e7d0fdedd2bf692314516 (plain)
1
2
3
4
5
6
7
8
func main(a, b i64) i64 {
	if true {
		a := 3
	} else {
		a := 5
	}
	return a
}