Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for issue45928 (0.14 sec)

  1. test/prove.go

    	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) {
    	combinedFrac := x / (x | (1 << 31)) // ERROR "Proved Neq64$"
    	useInt(combinedFrac)
    }
    
    //go:noinline
    func useInt(a int) {
    }
    
    //go:noinline
    func useSlice(a []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)
  2. src/go/internal/gcimporter/gcimporter_test.go

    	// This package only handles gc export data.
    	if runtime.Compiler != "gc" {
    		t.Skipf("gc-built packages not available (compiler = %s)", runtime.Compiler)
    	}
    
    	compileAndImportPkg(t, "issue15920")
    }
    
    func TestIssue20046(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	// This package only handles gc export data.
    	if runtime.Compiler != "gc" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top