Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TestIssue13566 (0.14 sec)

  1. src/go/internal/gcimporter/testdata/b.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.
    
    // Input for TestIssue13566
    
    package b
    
    import "./a"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 06 18:19:53 UTC 2016
    - 225 bytes
    - Viewed (0)
  2. src/go/internal/gcimporter/testdata/a.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.
    
    // Input for TestIssue13566
    
    package a
    
    import "encoding/json"
    
    type A struct {
    	a    *A
    	json json.RawMessage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 06 18:19:53 UTC 2016
    - 273 bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/gcimporter_test.go

    	sel := mset.Lookup(nil, "Lock")
    	lock := sel.Obj().(*types.Func)
    	if got, want := lock.Pkg().Path(), "sync"; got != want {
    		t.Errorf("got package path %q; want %q", got, want)
    	}
    }
    
    func TestIssue13566(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	// This package only handles gc export data.
    	if runtime.Compiler != "gc" {
    		t.Skipf("gc-built packages not available (compiler = %s)", runtime.Compiler)
    	}
    
    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