mirror of
https://github.com/golang/go
synced 2024-11-06 04:16:11 -07:00
31d19c0ba3
Also includes a small tweak to test/run.go to allow package names with Unicode letters (as opposed to just ASCII chars). Updates #27836 Change-Id: Idbf0bdea24174808cddcb69974dab820eb13e521 Reviewed-on: https://go-review.googlesource.com/138075 Reviewed-by: Cherry Zhang <cherryyz@google.com>
14 lines
203 B
Go
14 lines
203 B
Go
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))
|
|
}
|