Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sameSlice (0.11 sec)

  1. src/cmd/compile/internal/types2/api_test.go

    		if (f != nil) != test.found {
    			if f == nil {
    				t.Errorf("%s: got no object; want one", test.src)
    			} else {
    				t.Errorf("%s: got object = %v; want none", test.src, f)
    			}
    		}
    		if !sameSlice(index, test.index) {
    			t.Errorf("%s: got index = %v; want %v", test.src, index, test.index)
    		}
    		if indirect != test.indirect {
    			t.Errorf("%s: got indirect = %v; want %v", test.src, indirect, test.indirect)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  2. src/go/types/api_test.go

    		if (f != nil) != test.found {
    			if f == nil {
    				t.Errorf("%s: got no object; want one", test.src)
    			} else {
    				t.Errorf("%s: got object = %v; want none", test.src, f)
    			}
    		}
    		if !sameSlice(index, test.index) {
    			t.Errorf("%s: got index = %v; want %v", test.src, index, test.index)
    		}
    		if indirect != test.indirect {
    			t.Errorf("%s: got indirect = %v; want %v", test.src, indirect, test.indirect)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top