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 / internal / lsp / testdata / builtins / constants.go
1 package builtins
2
3 func _() {
4         const (
5                 foo = iota //@complete(" //", iota)
6         )
7
8         iota //@complete(" //")
9
10         var iota int //@item(iotaVar, "iota", "int", "var")
11
12         iota //@complete(" //", iotaVar)
13 }
14
15 func _() {
16         var twoRedUpEnd bool //@item(TRUEVar, "twoRedUpEnd", "bool", "var")
17
18         var _ bool = true //@rank(" //", _true, TRUEVar)
19 }