Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Fooer (0.04 sec)

  1. test/typeparam/typeswitch5.out

    fooer 6
    other
    other
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 09 18:41:45 UTC 2021
    - 41 bytes
    - Viewed (0)
  2. test/fixedbugs/issue8385.go

    // is called without a receiver.
    
    package main
    
    type Fooer interface {
    	Foo(i, j int)
    }
    
    func f(x int) {
    }
    
    type I interface {
    	M(int)
    }
    type T struct{}
    
    func (t T) M(x int) {
    }
    
    func g() func(int)
    
    func main() {
    	Fooer.Foo(5, 6) // ERROR "not enough arguments in call to method expression Fooer.Foo|incompatible type|not enough arguments"
    
    	var i I
    	var t *T
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 02:35:59 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  3. test/fixedbugs/issue45258.go

    // license that can be found in the LICENSE file.
    
    package main
    
    type Fooer interface {
    	Foo() Barer
    }
    
    type Barer interface {
    	Bar()
    }
    
    type impl struct{}
    
    func (r *impl) Foo() Barer {
    	return r
    }
    
    func (r *impl) Bar() {}
    
    func f1() {
    	var r Fooer = &impl{}
    	r.Foo().Bar()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:41:07 UTC 2021
    - 397 bytes
    - Viewed (0)
  4. test/typeparam/issue51522a.go

    	var t T
    
    	if i != t {
    		println("FAIL: if i != t")
    	}
    }
    
    type myint int
    
    func (m myint) foo() {
    }
    
    type fooer interface {
    	foo()
    }
    
    type comparableFoo interface {
    	comparable
    	foo()
    }
    
    func g[T comparableFoo](i fooer) {
    	var t T
    
    	if i != t {
    		println("FAIL: if i != t")
    	}
    }
    
    func main() {
    	f[int](int(0))
    	g[myint](myint(0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 10 18:50:50 UTC 2022
    - 543 bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue48974.go

    // license that can be found in the LICENSE file.
    
    package p
    
    type Fooer interface {
    	Foo()
    }
    
    type Fooable[F /* ERROR "instantiation cycle" */ Fooer] struct {
    	ptr F
    }
    
    func (f *Fooable[F]) Adapter() *Fooable[*FooerImpl[F]] {
    	return &Fooable[*FooerImpl[F]]{&FooerImpl[F]{}}
    }
    
    type FooerImpl[F Fooer] struct {
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 457 bytes
    - Viewed (0)
  6. test/fixedbugs/issue29612.dir/p2/ssa/ssa.go

    package ssa
    
    type T struct{}
    
    func (T) foo() {}
    
    type fooer interface {
    	foo()
    }
    
    func Works(v interface{}) {
    	switch v.(type) {
    	case interface{}:
    		v.(fooer).foo()
    	}
    }
    
    func Panics(v interface{}) {
    	switch v.(type) {
    	case interface{}:
    		v.(fooer).foo()
    		v.(interface{ foo() }).foo()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 17:27:06 UTC 2019
    - 453 bytes
    - Viewed (0)
  7. test/typeparam/issue48049.go

    package main
    
    func main() {
    	Gooer2[byte]()
    }
    
    type Fooer[T any] interface {
    	Foo(p T)
    }
    
    type fooer1[T any] struct{}
    
    func (fooer1[T]) Foo(T) {}
    
    type fooer2[T any] struct {
    	r []Fooer[T]
    }
    
    //go:noinline
    func (mr fooer2[T]) Foo(p T) {
    	mr.r[0] = fooer1[T]{}
    	return
    }
    
    func Gooer2[T any]() Fooer[T] {
    	return fooer2[T]{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 493 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/issue50182_test.go

    	}
    }
    
    // Test that escape analysis correctly tracks escaping inside of methods
    // called on generic types.
    type fooer interface {
    	foo()
    }
    type P struct {
    	p *int
    	q int
    }
    
    var esc []*int
    
    func (p P) foo() {
    	esc = append(esc, p.p) // foo escapes the pointer from inside of p
    }
    func f[T fooer](t T) {
    	t.foo()
    }
    func TestGenericEscape(t *testing.T) {
    	for i := 0; i < 4; i++ {
    		var x int = 77 + i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 13 23:35:37 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. test/fixedbugs/issue29612.dir/p1/ssa/ssa.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ssa
    
    type T struct{}
    
    func (T) foo() {}
    
    type fooer interface {
    	foo()
    }
    
    func Unused(v interface{}) {
    	v.(fooer).foo()
    	v.(interface{ foo() }).foo()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 17:27:06 UTC 2019
    - 320 bytes
    - Viewed (0)
  10. test/typeparam/issue51522b.go

    	switch t {
    	case i:
    		// ok
    	default:
    		println("FAIL: switch t")
    	}
    }
    
    type myint int
    
    func (m myint) foo() {
    }
    
    type fooer interface {
    	foo()
    }
    
    type comparableFoo interface {
    	comparable
    	foo()
    }
    
    func g[T comparableFoo](i fooer) {
    	var t T
    
    	switch i {
    	case t:
    		// ok
    	default:
    		println("FAIL: switch i")
    	}
    
    	switch t {
    	case i:
    		// ok
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 10 19:30:33 UTC 2022
    - 730 bytes
    - Viewed (0)
Back to top