Home | History | Annotate | Download | only in gob

Lines Matching refs:rt1

927 type RT1 struct {
942 var rt1 RT1
943 // Wire type is RT0, local type is RT1.
944 err := dec.Decode(&rt1)
948 if rt0.A != rt1.A || rt0.B != rt1.B || rt0.C != rt1.C {
949 t.Errorf("rt1->rt0: expected %v; got %v", rt0, rt1)
962 Ignore_i *RT1
979 it0.Ignore_i = &RT1{3.1, "hi", 7, "hello"}
985 var rt1 RT1
986 // Wire type is IT0, local type is RT1.
987 err := dec.Decode(&rt1)
991 if int(it0.A) != rt1.A || it0.B != rt1.B || it0.C != rt1.C {
992 t.Errorf("rt0->rt1: expected %v; got %v", it0, rt1)