Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TypeLinks (0.12 sec)

  1. src/reflect/all_test.go

    				t.Errorf("lost x[%d][%d] = %d, want %d", i, j, k, i*n+j)
    			}
    		}
    	}
    }
    
    func TestTypelinksSorted(t *testing.T) {
    	var last string
    	for i, n := range TypeLinks() {
    		if n < last {
    			t.Errorf("typelinks not sorted: %q [%d] > %q [%d]", last, i-1, n, i)
    		}
    		last = n
    	}
    }
    
    func TestFuncOf(t *testing.T) {
    	// check construction and use of type not in binary
    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