honnef.co/go/tools@v0.5.0-0.dev.0.20240520180541-dcae280a5e87/simple/s1006/testdata/src/example.com/CheckForTrue/for-true.go (about) 1 package pkg 2 3 func fn() { 4 for false { 5 } 6 for true { //@ diag(`should use for`) 7 } 8 for { 9 } 10 for i := 0; true; i++ { 11 } 12 }