Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ArgNotPublic (0.13 sec)

  1. src/net/rpc/server_test.go

    		t.Errorf("expected error calling Arith.Add with nil arg")
    	}
    }
    
    type ReplyNotPointer int
    type ArgNotPublic int
    type ReplyNotPublic int
    type NeedsPtrType int
    type local struct{}
    
    func (t *ReplyNotPointer) ReplyNotPointer(args *Args, reply Reply) error {
    	return nil
    }
    
    func (t *ArgNotPublic) ArgNotPublic(args *local, reply *Reply) error {
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 05:23:29 UTC 2023
    - 19K bytes
    - Viewed (0)
Back to top