Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestCopy (0.54 sec)

  1. src/reflect/all_test.go

    		ax := ValueOf(struct{ x []int }{test.orig}).Field(0)
    		shouldPanic("using unexported field", func() { Append(ax, e0...) })
    		shouldPanic("using unexported field", func() { AppendSlice(ax, e1) })
    	}
    }
    
    func TestCopy(t *testing.T) {
    	a := []int{1, 2, 3, 4, 10, 9, 8, 7}
    	b := []int{11, 22, 33, 44, 1010, 99, 88, 77, 66, 55, 44}
    	c := []int{11, 22, 33, 44, 1010, 99, 88, 77, 66, 55, 44}
    	for i := 0; i < len(b); i++ {
    		if b[i] != c[i] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top