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)
}
}