Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Hip (0.13 sec)

  1. test/fixedbugs/issue15572.dir/b.go

    package b
    
    import "./a"
    
    func F() {
    	a.F()
    	a.Fi()
    }
    
    func Fp() {
    	a.Fp()
    	a.Fip()
    }
    
    func Gp() {
    	a.Gp()
    	a.Gip()
    }
    
    func Hp() {
    	a.Hp()
    	a.Hip()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 09 06:16:07 UTC 2016
    - 309 bytes
    - Viewed (0)
  2. test/fixedbugs/issue15572.dir/a.go

    	return map[int]*T{0: &T{}}
    }
    
    func Gip() map[int]*T {
    	return map[int]*T{0: {}} // element with implicit composite literal type
    }
    
    func Hp() map[*T]int {
    	return map[*T]int{&T{}: 0}
    }
    
    func Hip() map[*T]int {
    	return map[*T]int{{}: 0} // key with implicit composite literal type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 09 06:16:07 UTC 2016
    - 738 bytes
    - Viewed (0)
Back to top