gitee.com/wgliang/goreporter@v0.0.0-20180902115603-df1b20f7c5d0/linters/simplecode/testdata/for-true.go (about)

     1  package pkg
     2  
     3  func fn() {
     4  	for false {
     5  	}
     6  	for true { // MATCH /should use for/
     7  	}
     8  	for {
     9  	}
    10  	for i := 0; true; i++ {
    11  	}
    12  }