(t *testing.T)
| 756 | } |
| 757 | |
| 758 | func TestUnsafeStringToSlice(t *testing.T) { |
| 759 | s := "hello world" |
| 760 | bs := unsafe.Slice(unsafe.StringData(s), len(s)) |
| 761 | s = "hi, boy" |
| 762 | _ = s |
| 763 | Equal(t, string(bs), "hello world") |
| 764 | } |
| 765 | |
| 766 | func TestLinkBufferIndexByte(t *testing.T) { |
| 767 | // clean & new |