Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Test5603 (0.32 sec)

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

    func Test5242(t *testing.T)                  { test5242(t) }
    func Test5337(t *testing.T)                  { test5337(t) }
    func Test5548(t *testing.T)                  { test5548(t) }
    func Test5603(t *testing.T)                  { test5603(t) }
    func Test5986(t *testing.T)                  { test5986(t) }
    func Test6390(t *testing.T)                  { test6390(t) }
    func Test6833(t *testing.T)                  { test6833(t) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/test.go

    	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)
    	}
    }
    
    func test5603(t *testing.T) {
    	var x [5]int64
    	exp := int64(C.issue5603exp)
    	x[0] = int64(C.issue5603foo0())
    	x[1] = int64(C.issue5603foo1(nil))
    	x[2] = int64(C.issue5603foo2(nil, nil))
    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