Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Fip (0.01 sec)

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

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    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

    type T struct {
    }
    
    func F() []T {
    	return []T{T{}}
    }
    
    func Fi() []T {
    	return []T{{}} // element with implicit composite literal type
    }
    
    func Fp() []*T {
    	return []*T{&T{}}
    }
    
    func Fip() []*T {
    	return []*T{{}} // element with implicit composite literal type
    }
    
    func Gp() map[int]*T {
    	return map[int]*T{0: &T{}}
    }
    
    func Gip() map[int]*T {
    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