A decodable type to exercise the default branch of ReadArray.
| 443 | |
| 444 | // A decodable type to exercise the default branch of ReadArray. |
| 445 | type testDec struct { |
| 446 | A int |
| 447 | B string |
| 448 | } |
| 449 | |
| 450 | func (t *testDec) MarshalMsg(i []byte) ([]byte, error) { |
| 451 | i = AppendInt(i, t.A) |
nothing calls this directly
no outgoing calls
no test coverage detected