Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for test18126 (0.14 sec)

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

    	_, _ = s, b
    	C.cstring_pointer_fun(nil)
    }
    
    // issue 18126
    
    func test18126(t *testing.T) {
    	p := C.malloc(1)
    	_, err := C.Issue18126C(&p)
    	C.free(p)
    	_ = err
    }
    
    // issue 18720
    
    func test18720(t *testing.T) {
    	if got, want := C.HELLO_WORLD, "hello\000world"; got != want {
    		t.Errorf("C.HELLO_WORLD == %q, expected %q", got, want)
    	}
    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