Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for issue5623 (0.19 sec)

  1. src/cmd/cgo/internal/testcshared/cshared_test.go

    	tmpdir, err := os.MkdirTemp("", "cshared-TestIssue36233")
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer os.RemoveAll(tmpdir)
    
    	const exportHeader = "issue36233.h"
    
    	run(t, nil, "go", "tool", "cgo", "-exportheader", exportHeader, "-objdir", tmpdir, "./issue36233/issue36233.go")
    	data, err := os.ReadFile(exportHeader)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	funcs := []struct{ name, signature string }{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/stdlib_test.go

    		"issue49767.go",  // go/types does not have constraints on channel element size
    		"issue49814.go",  // go/types does not have constraints on array size
    		"issue56103.go",  // anonymous interface cycles; will be a type checker error in 1.22
    		"issue52697.go",  // types2 does not have constraints on stack size
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/go/types/stdlib_test.go

    		"issue49767.go",  // go/types does not have constraints on channel element size
    		"issue49814.go",  // go/types does not have constraints on array size
    		"issue56103.go",  // anonymous interface cycles; will be a type checker error in 1.22
    		"issue52697.go",  // go/types does not have constraints on stack size
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. test/prove.go

    func issue57077(s []int) (left, right []int) {
    	middle := len(s) / 2
    	left = s[:middle] // ERROR "Proved IsSliceInBounds$"
    	right = s[middle:] // ERROR "Proved IsSliceInBounds$"
    	return
    }
    
    func issue51622(b []byte) int {
    	if len(b) >= 3 && b[len(b)-3] == '#' { // ERROR "Proved IsInBounds$"
    		return len(b)
    	}
    	return 0
    }
    
    func issue45928(x int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf_test.go

    	}
    }
    
    func TestAbstractOriginSanityIssue26237(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	mustHaveDWARF(t)
    	if wd, err := os.Getwd(); err == nil {
    		gopathdir := filepath.Join(wd, "testdata", "issue26237")
    		abstractOriginSanity(t, gopathdir, DefaultOpt)
    	} else {
    		t.Fatalf("os.Getwd() failed %v", err)
    	}
    }
    
    func TestRuntimeTypeAttrInternal(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
Back to top