1// Copyright 2022 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package Þfoo
6
7var ÞbarV int = 101
8
9func Þbar(x int) int {
10	defer func() { ÞbarV += 3 }()
11	return Þblix(x)
12}
13
14func Þblix(x int) int {
15	defer func() { ÞbarV += 9 }()
16	return ÞbarV + x
17}
18