Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for issue28545F (0.24 sec)

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

    func twoargsF() {
    	var v struct{ p *byte }
    	C.twoargs1(C.twoargs2(), C.twoargs3(unsafe.Pointer(&v)))
    }
    
    // issue 28545
    
    func issue28545G(p **C.char) {
    	C.issue28545F(p, -1, (0))
    	C.issue28545F(p, 2+3, complex(1, 1))
    	C.issue28545F(p, issue28772Constant, issue28772Constant2)
    }
    
    // issue 28772 part 1 - part 2 in testx.go
    
    const issue28772Constant = C.issue28772Constant
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/dwarf_test.go

    		t.Skip("skipping on not-amd64 not-386; location lists not supported")
    	}
    
    	if wd, err := os.Getwd(); err == nil {
    		gopathdir := filepath.Join(wd, "testdata", "issue25459")
    		abstractOriginSanity(t, gopathdir, DefaultOpt)
    	} else {
    		t.Fatalf("os.Getwd() failed %v", err)
    	}
    }
    
    func TestAbstractOriginSanityIssue26237(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