Sign in
llvm
/
llvm-project
/
llgo
/
97d4c42914154dcfe4d5ff76d0592d836e77f73a
/
.
/
third_party
/
gofrontend
/
libgo
/
go
/
cmd
/
go
/
testdata
/
src
/
vend
/
hello
/
hello_test.go
blob: 5e72ada9387a7a79d903d8557b214c0899c432d5 [
file
] [
log
] [
blame
]
package main
import (
"strings"
// really ../vendor/strings
"testing"
)
func TestMsgInternal(t *testing.T) {
if strings.Msg != "hello, world" {
t.Fatal("unexpected msg: %v", strings.Msg)
}
}