Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test20266 (0.21 sec)

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

    func Test18720(t *testing.T)                 { test18720(t) }
    func Test20129(t *testing.T)                 { test20129(t) }
    func Test20266(t *testing.T)                 { test20266(t) }
    func Test20369(t *testing.T)                 { test20369(t) }
    func Test20910(t *testing.T)                 { test20910(t) }
    func Test21708(t *testing.T)                 { test21708(t) }
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed May 17 21:53:11 GMT 2023
    - 6.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue20266.go

    // Issue 20266: use -I with a relative path.
    
    package cgotest
    
    /*
    #cgo CFLAGS: -I issue20266 -Iissue20266 -Ddef20266
    #include "issue20266.h"
    */
    import "C"
    
    import "testing"
    
    func test20266(t *testing.T) {
    	if got, want := C.issue20266, 20266; got != want {
    		t.Errorf("got %d, want %d", got, want)
    	}
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri May 12 12:00:02 GMT 2023
    - 463 bytes
    - Viewed (0)
Back to top