blob: 7190f599d68ca8b543ca7c55e1a870973cea1972 [file] [log] [blame]
package main
import (
"strings" // really ../vendor/strings
"testing"
)
func TestMsgInternal(t *testing.T) {
if strings.Msg != "hello, world" {
t.Fatalf("unexpected msg: %v", strings.Msg)
}
}