mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
14 lines
192 B
Go
14 lines
192 B
Go
|
|
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
|
||
|
|
}
|