Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for issue27856 (0.49 sec)

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

    // license that can be found in the LICENSE file.
    
    package cgotest
    
    /*
    #cgo !darwin LDFLAGS: -lm
    #include <math.h>
    */
    import "C"
    import (
    	"testing"
    
    	"cmd/cgo/internal/test/issue8756"
    )
    
    func test8756(t *testing.T) {
    	issue8756.Pow()
    	C.pow(1, 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 359 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue8756/issue8756.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package issue8756
    
    /*
    #cgo !darwin LDFLAGS: -lm
    #include <math.h>
    */
    import "C"
    
    func Pow() {
    	C.pow(1, 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 269 bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testplugin/plugin_test.go

    	globalSkip(t)
    	goCmd(t, "build", "-buildmode=plugin", "-o", "life.so", "./issue25756/plugin")
    	goCmd(t, "build", "-o", "issue25756.exe", "./issue25756/main.go")
    	// Fails intermittently, but 20 runs should cause the failure
    	for n := 20; n > 0; n-- {
    		t.Run(fmt.Sprint(n), func(t *testing.T) {
    			t.Parallel()
    			run(t, "./issue25756.exe")
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/issues0.go

    type registry struct {
    	alloc *allocator
    }
    type allocator struct {
    	_ [int(preloadLimit)]int
    }
    
    // Test that we don't crash when type-checking composite literals
    // containing errors in the type.
    var issue27346 = [][n /* ERROR "undefined" */ ]int{
    	0: {},
    }
    
    var issue22467 = map[int][... /* ERROR "invalid use of [...] array" */ ]int{0: {}}
    
    // Test that invalid use of ... in parameter lists is recognized
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top