Home | History | Annotate | Download | only in gob

Lines Matching defs:Direct

1015 type Direct struct {
1022 // Marshal indirect, unmarshal to direct.
1040 var d Direct
1046 t.Errorf("indirect to direct: d.A is %v not %v", d.A, ***i.A)
1049 t.Errorf("indirect to direct: d.S is %v not %v", d.S, ***i.S)
1052 t.Errorf("indirect to direct: d.M is %v not %v", d.M, ***i.M)
1054 // Marshal direct, unmarshal to indirect.
1067 t.Errorf("direct to indirect: ***i.A is %v not %v", ***i.A, d.A)
1070 t.Errorf("direct to indirect: ***i.S is %v not %v", ***i.S, ***i.S)
1073 t.Errorf("direct to indirect: ****i.M is %v not %v", ****i.M, d.M)