Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestInstantiateEquality (0.25 sec)

  1. src/cmd/compile/internal/types2/instantiate_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    package types2_test
    
    import (
    	. "cmd/compile/internal/types2"
    	"strings"
    	"testing"
    )
    
    func TestInstantiateEquality(t *testing.T) {
    	emptySignature := NewSignatureType(nil, nil, nil, nil, nil, false)
    	tests := []struct {
    		src       string
    		name1     string
    		targs1    []Type
    		name2     string
    		targs2    []Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. src/go/types/instantiate_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    package types_test
    
    import (
    	. "go/types"
    	"strings"
    	"testing"
    )
    
    func TestInstantiateEquality(t *testing.T) {
    	emptySignature := NewSignatureType(nil, nil, nil, nil, nil, false)
    	tests := []struct {
    		src       string
    		name1     string
    		targs1    []Type
    		name2     string
    		targs2    []Type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top