Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Test6907 (0.07 sec)

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

    			t.Errorf("C.myint as const = %v, want 1.5", c)
    		}
    	}
    
    	if s := C.mystring_def; s != "hello" {
    		t.Errorf("C.mystring_def = %q, want %q", s, "hello")
    	}
    }
    
    // issue 6907
    
    func test6907(t *testing.T) {
    	want := "yarn"
    	if got := C.GoString(C.Issue6907CopyString(want)); got != want {
    		t.Errorf("C.GoString(C.Issue6907CopyString(%q)) == %q, want %q", want, got, want)
    	}
    }
    
    // issue 7560
    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