Ejemplo n.º 1
0
func Test1(in int, b []byte, in2 int, m map[string]int) {
	pdump.PrintInputs(Test1)
}
Ejemplo n.º 2
0
func Test7(f func(i int) bool) {
	pdump.PrintInputs(Test7)
}
Ejemplo n.º 3
0
func Test8(a interface{}, p *[]byte, up unsafe.Pointer) {
	pdump.PrintInputs(Test8)
}
Ejemplo n.º 4
0
func Test6(c1 complex64, c2 complex128) {
	pdump.PrintInputs(Test6)
}
Ejemplo n.º 5
0
func Test5(t bool, c1 chan byte, c2 <-chan byte) {
	pdump.PrintInputs(Test5)
}
Ejemplo n.º 6
0
func Test4(a [3]byte, t testStruct) {
	pdump.PrintInputs(Test4)
}
Ejemplo n.º 7
0
func Test3(in int) (int, int) {
	pdump.PrintInputs(Test3)
	defer pdump.PrintOutputs(Test3)
	defer pdump.PrintInOutputs(Test3)
	return 3, 4
}
Ejemplo n.º 8
0
func Test2(in float64, s string) {
	pdump.PrintInputs(Test2)
}