Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test21708 (0.17 sec)

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

    func Test20369(t *testing.T)                 { test20369(t) }
    func Test20910(t *testing.T)                 { test20910(t) }
    func Test21708(t *testing.T)                 { test21708(t) }
    func Test21809(t *testing.T)                 { test21809(t) }
    func Test21897(t *testing.T)                 { test21897(t) }
    func Test22906(t *testing.T)                 { test22906(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

    	}
    }
    
    // issue 21668
    
    var issue21668_X = C.x21668
    
    // issue 21708
    
    func test21708(t *testing.T) {
    	if got, want := C.CAST_TO_INT64, -1; got != want {
    		t.Errorf("C.CAST_TO_INT64 == %v, expected %v", got, want)
    	}
    }
    
    // issue 21809
    
    func test21809(t *testing.T) {
    	longVar := C.long(3)
    	typedefVar := C.MySigned_t(4)
    	typedefTypedefVar := C.MySigned2_t(5)
    
    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