mirror of
https://github.com/golang/go
synced 2024-11-15 09:30:33 -07:00
055a5e55fa
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>
18 lines
363 B
Go
18 lines
363 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 main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"./Þfoo"
|
|
Þblix "./Þfoo"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Printf("Þfoo.Þbar(33) returns %v\n", Þfoo.Þbar(33))
|
|
fmt.Printf("Þblix.Þbar(33) returns %v\n", Þblix.Þbar(33))
|
|
}
|