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