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 / internal / lsp / testdata / builtins / builtin_types.go
1 package builtins
2
3 func _() {
4         var _ []bool //@item(builtinBoolSliceType, "[]bool", "[]bool", "type")
5
6         var _ []bool = make() //@rank(")", builtinBoolSliceType, int)
7
8         var _ []bool = make([], 0) //@rank(",", bool, int)
9
10         var _ [][]bool = make([][], 0) //@rank(",", bool, int)
11 }