Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for test5242 (0.08 sec)

  1. src/cmd/cgo/internal/test/test.go

    	}
    	if C.common != 123 {
    		t.Errorf("common: %v (expected 123)", C.common)
    	}
    }
    
    // issue 5227
    
    func test5227(t *testing.T) {
    	C.init()
    }
    
    func selectfont() C.Fontinfo {
    	return C.SansTypeface
    }
    
    // issue 5242
    
    func test5242(t *testing.T) {
    	if got := C.issue5242(C.foo{}, C.bar{}); got != 5242 {
    		t.Errorf("got %v", got)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
Back to top