Giant blob of minor changes
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / honnef.co / go / tools@v0.0.1-2020.1.5 / simple / testdata / src / for-true / for-true.go
1 package pkg
2
3 func fn() {
4         for false {
5         }
6         for true { // want `should use for`
7         }
8         for {
9         }
10         for i := 0; true; i++ {
11         }
12 }