blob: 8b6a814c3c4de486c439fafb82c6ee4a114e08bb [file] [log] [blame]
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
}