Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Embed0a (0.27 sec)

  1. src/encoding/json/decode_test.go

    	Level1e int `json:"x"` // annihilated by Embed0a.Level1e
    }
    
    type Embed0a struct {
    	Level1a int `json:"Level1a,omitempty"`
    	Level1b int `json:"LEVEL1B,omitempty"`
    	Level1c int `json:"-"`
    	Level1d int // annihilated by Embed0's Level1d
    	Level1f int `json:"x"` // annihilated by Embed0's Level1e
    }
    
    type Embed0b Embed0
    
    type Embed0c Embed0
    
    type Embed0p struct {
    	image.Point
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  2. test/interface/embed1.dir/embed0.go

    Russ Cox <******@****.***> 1646781395 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 09 21:31:58 UTC 2022
    - 411 bytes
    - Viewed (0)
  3. test/interface/embed3.dir/embed0.go

    Dmitry Vyukov <******@****.***> 1571748917 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 06 09:09:59 UTC 2019
    - 305 bytes
    - Viewed (0)
  4. test/interface/embed1.dir/embed1.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that embedded interface types can have local methods.
    
    package main
    
    import "./embed0"
    
    type T int
    func (t T) m() {}
    
    type I interface { m() }
    type J interface { I }
    
    type PI interface { p.I }
    type PJ interface { p.J }
    
    func main() {
    	var i I
    	var j J
    	var t T
    	i = t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 10 20:35:27 UTC 2012
    - 589 bytes
    - Viewed (0)
  5. test/interface/embed3.dir/embed1.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import "./embed0"
    
    type X1 struct{}
    
    func (X1) Foo() {}
    
    type X2 struct{}
    
    func (X2) foo() {}
    
    type X3 struct{}
    
    func (X3) foo(int) {}
    
    type X4 struct{ p.M1 }
    
    type X5 struct{ p.M1 }
    
    func (X5) foo(int) {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 06 09:09:59 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  6. src/encoding/xml/marshal_test.go

    			},
    		},
    		ExpectXML: `<EmbedA>` +
    			`<FieldB>A.C.B</FieldB>` +
    			`<FieldC>A.C.C</FieldC>` +
    			`<EmbedB>` +
    			`<FieldB>A.B.B</FieldB>` +
    			`<FieldA>` +
    			`<A1>A.B.C.A1</A1>` +
    			`<A2>A.B.C.A2</A2>` +
    			`</FieldA>` +
    			`<FieldC>A.B.C.C</FieldC>` +
    			`</EmbedB>` +
    			`<FieldA>A.A</FieldA>` +
    			`<FieldE>A.D.E</FieldE>` +
    			`</EmbedA>`,
    	},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
Back to top