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