Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestIssue29029 (0.16 sec)

  1. src/go/types/issues_test.go

    	}
    	obj, _, _ = LookupFieldOrMethod(it, false, nil, "Error")
    	if obj != want {
    		t.Fatalf("%s.Lookup: got %q (%p); want %q (%p)", it, obj, obj, want, want)
    	}
    }
    
    func TestIssue29029(t *testing.T) {
    	f1 := mustParse(fset, `package p; type A interface { M() }`)
    	f2 := mustParse(fset, `package p; var B interface { A }`)
    
    	// printInfo prints the *Func definitions recorded in info, one *Func per line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/issues_test.go

    	}
    	obj, _, _ = LookupFieldOrMethod(it, false, nil, "Error")
    	if obj != want {
    		t.Fatalf("%s.Lookup: got %q (%p); want %q (%p)", it, obj, obj, want, want)
    	}
    }
    
    func TestIssue29029(t *testing.T) {
    	f1 := mustParse(`package p; type A interface { M() }`)
    	f2 := mustParse(`package p; var B interface { A }`)
    
    	// printInfo prints the *Func definitions recorded in info, one *Func per line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
Back to top