Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / tools@v0.0.0-20201105173854-bc9fc8d8c4bc / go / ssa / interp / testdata / src / reflect / reflect.go
1 package reflect
2
3 type Type interface {
4         String() string
5 }
6
7 type Value struct {
8 }
9
10 func (Value) String() string
11
12 func SliceOf(Type) Type
13
14 func TypeOf(interface{}) Type
15
16 func ValueOf(interface{}) Value