aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue27836.dir/Äfoo.go
blob: 8b6a814c3c4de486c439fafb82c6ee4a114e08bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package Äfoo

var ÄbarV int = 101

func Äbar(x int) int {
	defer func() { ÄbarV += 3 }()
	return Äblix(x)
}

func Äblix(x int) int {
	defer func() { ÄbarV += 9 }()
	return ÄbarV + x
}