1
0
mirror of https://github.com/golang/go synced 2024-09-28 22:24:29 -06:00
go/test/fixedbugs/issue27836.dir/Þfoo.go
David Chase 055a5e55fa [dev.unified] test: change Unicode file/package name to use characters not translated by macOS.
In filenames, macOS translates Ä (U+00c4, c3 84) to Ä (U+0041 U+0308, 41 cc 88).
This causes problems for run.go's crude rules for testing the compiler.

Fixes #53954.

Change-Id: I850421cbf07e022ca5ff8122e0fb4e80deb55adf
Reviewed-on: https://go-review.googlesource.com/c/go/+/418334
Run-TryBot: David Chase <drchase@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Matthew Dempsky <mdempsky@google.com>
2022-07-19 19:36:23 +00:00

18 lines
352 B
Go

// Copyright 2022 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
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
}