You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
240 B

package _generated
import (
"testing"
)
// Issue #191: panic in unsafe.UnsafeString()
func TestIssue191(t *testing.T) {
b := []byte{0x81, 0xa0, 0xa0}
var i Issue191
_, err := (&i).UnmarshalMsg(b)
if err != nil {
t.Error(err)
}
}