1package msgp_test 2 3//go:generate msgp -o=defgen_test.go -tests=false 4 5type Blobs []Blob 6 7type Blob struct { 8 Name string `msg:"name"` 9 Float float64 `msg:"float"` 10 Bytes []byte `msg:"bytes"` 11 Amount int64 `msg:"amount"` 12} 13