Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201028153306-37f0764111ff / go / analysis / passes / stdmethods / testdata / src / a / a.go
1 // Copyright 2010 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 package a
6
7 import (
8         "encoding/xml"
9         "fmt"
10         "io"
11 )
12
13 type T int
14
15 func (T) Scan(x fmt.ScanState, c byte) {} // want `should have signature Scan\(fmt\.ScanState, rune\) error`
16
17 func (T) Format(fmt.State, byte) {} // want `should have signature Format\(fmt.State, rune\)`
18
19 type U int
20
21 func (U) Format(byte) {} // no error: first parameter must be fmt.State to trigger check
22
23 func (U) GobDecode() {} // want `should have signature GobDecode\(\[\]byte\) error`
24
25 // Test rendering of type names such as xml.Encoder in diagnostic.
26 func (U) MarshalXML(*xml.Encoder) {} // want `method MarshalXML\(\*xml.Encoder\) should...`
27
28 func (U) UnmarshalXML(*xml.Decoder, xml.StartElement) error { // no error: signature matches xml.Unmarshaler
29         return nil
30 }
31
32 func (U) WriteTo(w io.Writer) {} // want `method WriteTo\(w io.Writer\) should have signature WriteTo\(io.Writer\) \(int64, error\)`
33
34 func (T) WriteTo(w io.Writer, more, args int) {} // ok - clearly not io.WriterTo
35
36 type I interface {
37         ReadByte() byte // want `should have signature ReadByte\(\) \(byte, error\)`
38 }