Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for e10 (0.02 sec)

  1. src/internal/types/testdata/check/init2.go

    // cycles through method values of embedded methods
    
    type T9 struct { E9 }
    type E9 int
    func (E9) m() int { _ = x9; return 0 }
    var x9 /* ERROR "initialization cycle" */ = T9{0}.m
    
    type T10 struct { E10 }
    type E10 int
    func (E10) m() int { _ = x10; return 0 }
    var x10 /* ERROR "initialization cycle" */ = T10{0}.m()
    
    type T9p struct { E9p }
    type E9p int
    func (*E9p) m() int { _ = x9p; return 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. test/fixedbugs/issue7044.go

    	// get optimized away into constructing the returned array. With current
    	// optimizations, constructing the returned array uses only
    	// a single register.
    	e0, e1, e2, e3, e4, e5, e6, e7, e8, e9, e10, e11, e12, e13, e14, e15 :=
    		float64(g0), float64(g1), float64(g2), float64(g3), float64(g4), float64(g5), float64(g6), float64(g7), float64(g8), float64(g9), float64(g10), float64(g11), float64(g12), float64(g13), float64(g14), float64(g15)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.2K bytes
    - Viewed (0)
Back to top